blob: ce4248e5ad00d744d56a2478d0812e5748467917 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
host_shell_login_helper: |
echo "----pods----"
podman pod list --sort status --format={{ '"{{.Status}} {{.Name}}"' }}
echo ""
echo "----containers----"
podman container list --all --sort status --format={{ '"{{.State}} {{.Status}} {{.Names}}"' }}
echo ""
host_shell_login_helper_bash: |
if [[ $- == *i* ]]
then
{{ host_shell_login_helper | indent(4) | trim }}
fi
host_shell_login_helper_fish: |
if status is-interactive
{{ host_shell_login_helper | indent(4) | trim }}
end
host_containers_user: "{{ containers_user if containers_user is defined else 'containers' }}"
host_patching: false
host_patching_apply: false
host_patching_reboot: "never"
host_ssh_harden: false
host_cpanel_installed: false
|