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