From bc027359d10eaa9794f7c982b1ea398a2d876fb2 Mon Sep 17 00:00:00 2001 From: Fredrik Thulin Date: Tue, 15 Jan 2019 13:11:15 +0100 Subject: [PATCH] show which manifest is applied to lessen confusion --- global/post-tasks.d/030puppet | 1 + 1 file changed, 1 insertion(+) diff --git a/global/post-tasks.d/030puppet b/global/post-tasks.d/030puppet index b94b9ff..af45005 100755 --- a/global/post-tasks.d/030puppet +++ b/global/post-tasks.d/030puppet @@ -8,6 +8,7 @@ fi if [ -f /usr/bin/puppet -a -d /etc/puppet/manifests ]; then for m in `find /etc/puppet/manifests -name \*.pp`; do + test "x$COSMOS_VERBOSE" = "xy" && echo "$0: Applying Puppet manifest $m" puppet apply $args $m done fi