]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - modules/cron_puppet/files/post-merge
Add stdlib module
[perso/Immae/Projets/Puppet.git] / modules / cron_puppet / files / post-merge
1 #!/bin/bash -e
2 ## Run Puppet locally using puppet apply
3 git submodule update --init
4 /usr/bin/puppet apply --modulepath=/etc/puppetlabs/puppet/modules /etc/puppetlabs/puppet/manifests/site.pp
5
6 ## Log status of the Puppet run
7 if [ $? -eq 0 ]
8 then
9 /usr/bin/logger -i "Puppet has run successfully" -t "puppet-run"
10 exit 0
11 else
12 /usr/bin/logger -i "Puppet has ran into an error, please run Puppet manually" -t "puppet-run"
13 exit 1
14 fi
15