blob: 1ee7195807d0649b8eb76b83ec4e2785d28bee4a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
if node.os != "alpine":
raise BundleError(f"{node.name}: OS {node.os} is not supported.")
actions = {
"apk_update": {
"command": "apk update",
"before": {
"pkg_apk:",
},
"triggered": True,
},
}
for package, options in node.metadata.get("apk/packages", {}).items():
pkg_apk[package] = options
|