install.fairie/home/.chezmoiscripts/universal/run_onchange_before_14-ensure-minimal-vms-passwordless.sh.tmpl
Brian Zalewski 877eddc184 Update 26 files
- /home/.chezmoiscripts/qubes/run_onchange_after_11-set-wallpaper.sh.tmpl
- /home/.chezmoiscripts/qubes/run_onchange_before_12-update-dom0.sh.tmpl
- /home/.chezmoiscripts/qubes/run_onchange_before_13-install-official-templates.sh.tmpl
- /home/.chezmoiscripts/qubes/run_onchange_before_14-ensure-minimal-vms-passwordless.sh.tmpl
- /home/.chezmoiscripts/qubes/run_onchange_before_15-install-unofficial-templates.sh.tmpl
- /home/.chezmoiscripts/qubes/run_onchange_before_16-update-template-vms.sh.tmpl
- /home/.chezmoiscripts/qubes/run_onchange_before_17-install-mirage-firewall.sh.tmpl
- /home/.chezmoiscripts/qubes/run_onchange_before_18-configure-sys-usb.sh.tmpl
- /home/.chezmoiscripts/qubes/run_onchange_before_19-setup-sys-gui.sh.tmpl
- /home/.chezmoiscripts/_universal/run_before_01-add-temporary-includes.sh.tmpl
- /home/.chezmoiscripts/_universal/run_onchange_before_05-install-homebrew.sh.tmpl
- /home/.chezmoiscripts/universal/run_before_01-decrypt-age-key.sh.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_11-set-wallpaper.sh.tmpl
- /home/.chezmoiscripts/universal/run_onchange_before_12-update-dom0.sh.tmpl
- /home/.chezmoiscripts/universal/run_onchange_before_13-install-official-templates.sh.tmpl
- /home/.chezmoiscripts/universal/run_onchange_before_14-ensure-minimal-vms-passwordless.sh.tmpl
- /home/.chezmoiscripts/universal/run_onchange_before_15-install-unofficial-templates.sh.tmpl
- /home/.chezmoiscripts/universal/run_onchange_before_16-update-template-vms.sh.tmpl
- /home/.chezmoiscripts/universal/run_onchange_before_17-install-mirage-firewall.sh.tmpl
- /home/.chezmoiscripts/universal/run_onchange_before_18-configure-sys-usb.sh.tmpl
- /home/.chezmoiscripts/universal/run_onchange_before_19-setup-sys-gui.sh.tmpl
- /home/.chezmoiscripts/universal/run_before_01-add-temporary-includes.sh.tmpl
- /home/.chezmoiscripts/universal/run_before_01-install-homebrew.sh.tmpl
- /home/.chezmoiscripts/universal/run_before_02-decrypt-age-key.sh.tmpl
- /scripts/cloudflared-ssh.sh
- /scripts/src/cloudflared-ssh.sh.tmpl
2023-04-15 23:23:24 +00:00

22 lines
1.2 KiB
Cheetah

{{- if (eq .host.distro.id "qubes") -}}
#!/usr/bin/env bash
# @file Qubes Passwordless Templates
# @brief Ensures the minimal templates defined in `.qubes.templates` in the `home/.chezmoidata.yaml` file are configured to be passwordless
# @description
# This script runs in dom0 and ensures the templates defined in the `.qubes.templates` data key of `home/.chezmoidata.yaml` all have
# the `qubes-core-agent-passwordless-root` package installed so that they can be provisioned headlessly.
### Ensure Qubes minimal templates have passwordless sudo
for TEMPLATE of {{ .qubes.templates | toString | replace "[" "" | replace "]" "" }}; do
if [[ "$TEMPLATE" == *'-minimal' ]]; then
if [[ "$TEMPLATE" == 'debian'* ]] || [[ "$TEMPLATE" == 'ubuntu'* ]]; then
logg info "Installing qubes-core-agent-passwordless-root on $TEMPLATE"
qvm-run -u root "$TEMPLATE" apt-get update
qvm-run -u root "$TEMPLATE" apt-get install -y qubes-core-agent-passwordless-root
elif [[ "$TEMPLATE" == 'fedora'* ]]; then
logg info "Installing qubes-core-agent-passwordless-root on $TEMPLATE"
qvm-run -u root "$TEMPLATE" dnf install -y qubes-core-agent-passwordless-root
fi
fi
done
{{ end -}}