]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blame - modules/cron_puppet/files/post-merge
Rename cron-puppet class to cron_puppet
[perso/Immae/Projets/Puppet.git] / modules / cron_puppet / files / post-merge
CommitLineData
596f9fef
IB
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
6if [ $? -eq 0 ]
7then
8 /usr/bin/logger -i "Puppet has run successfully" -t "puppet-run"
9 exit 0
10else
11 /usr/bin/logger -i "Puppet has ran into an error, please run Puppet manually" -t "puppet-run"
12 exit 1
13fi
14