install.fairie/dotfiles/.local/share/chezmoi/home/.chezmoiscripts/_universal/run_onchange_before_90-install-packages.tmpl

11 lines
367 B
Cheetah
Raw Normal View History

#!/usr/bin/env bash
# software: {{ join (get .softwareGroups .host.softwareGroup) " " }}
if command -v install-software > /dev/null; then
logg 'Installing packages defined in .chezmoidata.yaml under the .softwareGroups key'
install-software {{ join (index .softwareGroups .host.softwareGroup) " " }}
else
logg error '`install-software` is not in the PATH'
fi