{{- $machineRole := default "host" (index . "machineRole") -}} {{- if eq $machineRole "host" -}} #!/usr/bin/env dash # Deploy system-level configs from etc/ to /etc/. # chezmoi re-runs this script whenever any file under etc/ changes. # etc/ content hash: {{ output "sh" "-c" (printf "cd %q && find etc -type f ! -name .ignore -exec sha256sum {} + | LC_ALL=C sort" .chezmoi.sourceDir) | sha256sum }} # luks root uuid: {{ output "lsblk" "-dno" "UUID" (printf "/dev/%s" .luksRootPartition) | trim }} set -eu cd "$CHEZMOI_SOURCE_DIR" find etc -type f ! -name .ignore | while IFS= read -r src; do case "$src" in *.tmpl) dest="/${src%.tmpl}" tmp=$(mktemp) chezmoi execute-template <"$src" >"$tmp" sudo install -D -m 0644 -o root -g root "$tmp" "$dest" rm -f "$tmp" ;; etc/sudoers-rs) sudo install -D -m 0440 -o root -g root "$src" "/${src}" ;; etc/systemd/system-sleep/*) sudo install -D -m 0755 -o root -g root "$src" "/${src}" ;; *) sudo install -D -m 0644 -o root -g root "$src" "/${src}" ;; esac done if [ -d etc/udev/rules.d ]; then sudo udevadm control --reload sudo udevadm trigger --subsystem-match=usb sudo udevadm trigger --subsystem-match=hidraw fi # sudo-rs: /etc/pam.d/sudo-i is a symlink to /etc/pam.d/sudo sudo ln -sfT sudo /etc/pam.d/sudo-i # Pick up changes to repo-managed systemd units and drop-ins under /etc. sudo systemctl daemon-reload # Reload systemd-logind so changes under /etc/systemd/logind.conf.d/ # (e.g. HandlePowerKey overrides) take effect without dropping sessions. sudo systemctl kill -s HUP systemd-logind {{- else -}} #!/usr/bin/env dash # /etc deployment is host-only. set -eu exit 0 {{- end }}