af14e1efbc
- /home/.chezmoiscripts/qubes/run_onchange_before_16-update-template-vms.tmpl - /home/.chezmoiscripts/qubes/run_onchange_before_17-install-mirage-firewall.tmpl - /home/.chezmoiscripts/qubes/run_onchange_before_18-configure-sys-usb.tmpl - /home/.chezmoiscripts/qubes/run_onchange_before_19-setup-sys-gui - /home/dot_config/shell/functions.sh - /home/dot_config/shell/motd.sh - /home/dot_config/shell/profile.sh - /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/dot_config/shell/aliases.sh.tmpl - /home/dot_config/shell/exports.sh.tmpl - /home/dot_config/shell/functions.sh.tmpl - /home/dot_config/shell/motd.sh.tmpl - /home/dot_config/shell/private_private.sh.tmpl - /home/dot_config/shell/profile.sh.tmpl
11 lines
563 B
Bash
11 lines
563 B
Bash
#!/usr/bin/env bash
|
|
# @file Qubes Update TemplateVMs
|
|
# @brief Ensures the templates available in dom0 are all up-to-date
|
|
# @description
|
|
# This script ensures the dom0 Qube VM templates are all up-to-date by using the recommended `qubesctl` command.
|
|
# Due to issues with the Whonix Qubes, the update process will timeout after 15 minutes which should be enough time
|
|
# for the updates to finish.
|
|
|
|
### Update TemplateVMs
|
|
logg info 'Updating TemplateVMs via `qubesctl`'
|
|
timeout 900 qubesctl --show-output --skip-dom0 --templates state.sls update.qubes-vm
|