feat(core): add configz install on the dotfiles cli

This commit is contained in:
Ade Attwood 2023-11-04 16:59:11 +00:00
parent 447563c596
commit b6170773c6

View file

@ -17,6 +17,7 @@ case $1 in
bolt module install
bolt apply manifests/root.pp --targets localhost --run-as root --sudo-password-prompt
bolt apply manifests/workstation.pp --targets localhost
RUST_LOG=info configz --module manifests/configz-user
exit 0;
;;
apply-root)
@ -27,6 +28,7 @@ case $1 in
apply-user)
cd "$DOTFILES_DIR"
bolt apply manifests/workstation.pp --targets localhost
RUST_LOG=info configz --module manifests/configz-user
exit 0;
;;
esac