blob: e9327abc6b1b7f1506e2f7fd25f1dabb51c6a9fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
if node.os != "alpine":
raise BundleError(f"{node.name}: OS {node.os} is not supported.")
actions = {
"mount_all": {
"command": "mount -a",
"triggered": True,
},
}
for file, config in node.metadata.get("fstab", {}).items():
pkg_apk[package] = options
|