about summary refs log tree commit diff
path: root/bundles/alpine-base/items.py
blob: 459f348817a8a86fdd4049c9cc0443742a16444d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
if node.os != "alpine":
    raise BundleError(f"{node.name}: OS {node.os} is not supported.")

actions = {
    "enable_etc_profiled_color_prompt": {
        "command": "rename -v '.disabled' '' /etc/profile.d/color_prompt.sh.disabled",
        "unless": "test -e /etc/profile.d/color_prompt.sh",
    }
}

# TODO: weekly apk update cronjob?