install.fairie/home/.chezmoiscripts/universal/run_onchange_before_12-update-dom0.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

39 lines
2 KiB
Cheetah

{{- if (eq .host.distro.id "qubes") -}}
#!/usr/bin/env bash
# @file Qubes Update dom0
# @brief Ensures Qubes dom0 is up-to-date, includes all the Qubes repository definitions, and that `sys-whonix` is running
# @description
# This script begins with ensuring Qubes dom0 is up-to-date by including developer-channel Qubes repository definitions are available.
# It then ensures Qubes dom0 is up-to-date using a combination of several methods including the recommended Salt-based
# update script. After dom0 is updated, it installs the packages defined in `.qubes.dom0Packages` which is defined in the
# `home/.chezmoidata.yaml` file. It also ensures `sys-whonix` is running if it is not already running.
# qubes-templates.repo hash: {{ include (joinPath .chezmoi.homeDir ".config" "qubes" "qubes-templates.repo") | sha256sum }}
# qubes-dom0.repo hash: {{ include (joinPath .chezmoi.homeDir ".config" "qubes" "qubes-dom0.repo") | sha256sum }}
# qubes packages: {{ .qubes.dom0Packages | toString | replace "[" "" | replace "]" "" }}
### Configure dom0 repos
logg info 'Updating dom0 repos to include auxilary branches'
sudo cp -f "${XDG_CONFIG_HOME:-$HOME/.config}/qubes/qubes-templates.repo" /etc/qubes/repo-templates/qubes-templates.repo
sudo cp -f "${XDG_CONFIG_HOME:-$HOME/.config}/qubes/qubes-dom0.repo" /etc/yum.repos.d/qubes-dom0.repo
### Update dom0
logg info 'Updating dom0 via `qubesctl`'
sudo qubesctl --show-output state.sls update.qubes-dom0
logg info 'Updating dom0 via `qubes-dom0-update`'
sudo qubes-dom0-update --clean -y
### Install qubes-repo-contrib
logg info "Installing qubes-repo-contrib"
sudo qubes-dom0-update -y qubes-repo-contrib
### Install dependencies
for PACKAGE of {{ .qubes.dom0Packages | toString | replace "[" "" | replace "]" "" }}; do
logg info "Installing $PACKAGE"
sudo qubes-dom0-update -y "$PACKAGE" || true
done
### Ensure sys-whonix is running
logg info 'Ensuring `sys-whonix` is running'
qvm-start sys-whonix --skip-if-running
{{ end -}}