From b6170773c64cde9ef1d10180750c7f0ddd3c8e7c Mon Sep 17 00:00:00 2001 From: Ade Attwood Date: Sat, 4 Nov 2023 16:59:11 +0000 Subject: [PATCH] feat(core): add configz install on the dotfiles cli --- site-modules/core/files/bin/dotfiles | 2 ++ 1 file changed, 2 insertions(+) diff --git a/site-modules/core/files/bin/dotfiles b/site-modules/core/files/bin/dotfiles index a6aee6b..f2ea706 100755 --- a/site-modules/core/files/bin/dotfiles +++ b/site-modules/core/files/bin/dotfiles @@ -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