diff options
Diffstat (limited to 'modules/cron-puppet/files')
-rw-r--r-- | modules/cron-puppet/files/post-merge | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/cron-puppet/files/post-merge b/modules/cron-puppet/files/post-merge new file mode 100644 index 0000000..b8dc266 --- /dev/null +++ b/modules/cron-puppet/files/post-merge | |||
@@ -0,0 +1,14 @@ | |||
1 | #!/bin/bash -e | ||
2 | ## Run Puppet locally using puppet apply | ||
3 | /usr/bin/puppet apply /etc/puppetlabs/puppet/manifests/site.pp | ||
4 | |||
5 | ## Log status of the Puppet run | ||
6 | if [ $? -eq 0 ] | ||
7 | then | ||
8 | /usr/bin/logger -i "Puppet has run successfully" -t "puppet-run" | ||
9 | exit 0 | ||
10 | else | ||
11 | /usr/bin/logger -i "Puppet has ran into an error, please run Puppet manually" -t "puppet-run" | ||
12 | exit 1 | ||
13 | fi | ||
14 | |||