From 5e6c8e64554fc64df94e2ee8d8826c44c5ad4fbb Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Tue, 16 Jun 2026 16:53:28 +1000 Subject: [PATCH] remove sudo call --- tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests.sh b/tests.sh index b9e964b..4625a4b 100755 --- a/tests.sh +++ b/tests.sh @@ -59,7 +59,7 @@ poetry run \ --harvest "${BUNDLE_DIR}3" \ --out "${PUPPET_DIR}3" \ --target puppet -sudo puppet apply --modulepath "${PUPPET_DIR}3/modules" "${PUPPET_DIR}3/manifests/site.pp" --noop +puppet apply --modulepath "${PUPPET_DIR}3/modules" "${PUPPET_DIR}3/manifests/site.pp" --noop # Ansible mode! builtin cd "${ANSIBLE_DIR}"