install.fairie/home/.chezmoiscripts/universal/run_onchange_after_12-install-packages.tmpl

24 lines
1.1 KiB
Cheetah
Raw Normal View History

#!/usr/bin/env bash
{{- includeTemplate "universal/profile" }}
{{- includeTemplate "universal/logg" }}
{{- $softwareGroup := nospace (cat "_" .host.softwareGroup) }}
# software: {{ index .softwareGroups $softwareGroup | toString | replace "[" "" | replace "]" "" }}
# software map: {{ include (joinPath .chezmoi.homeDir ".local" "share" "chezmoi" "software.yml") | sha256sum }}
if command -v install-program > /dev/null; then
if command -v zx > /dev/null; then
logg info 'Installing packages defined in .chezmoidata.yaml under the .softwareGroups key'
logg info 'Installing: {{ index .softwareGroups $softwareGroup | toString | replace "[" "" | replace "]" "" }}'
# Ask for the administrator password upfront
logg info 'A sudo password may be required for some of the installations'
sudo echo "Sudo access granted."
install-program {{ index .softwareGroups $softwareGroup | toString | replace "[" "" | replace "]" "" }}
else
logg error '`zx` is not available'
fi
else
logg error '`install-program` is not in the PATH. It should be located in ~/.local/bin.'
fi