aboutsummaryrefslogtreecommitdiff
path: root/modules/base_installation/files/cronie/puppet-post-merge
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2017-08-24 02:22:17 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2017-08-29 22:46:14 +0200
commit7fed35a408b9ec37454169425823785b5fc8978b (patch)
tree28371d43ac304f99fb0a5305124858db69ef2137 /modules/base_installation/files/cronie/puppet-post-merge
parentba2cf1b5d938810077b0fd73844faf432e8e8f9d (diff)
downloadPuppet-7fed35a408b9ec37454169425823785b5fc8978b.tar.gz
Puppet-7fed35a408b9ec37454169425823785b5fc8978b.tar.zst
Puppet-7fed35a408b9ec37454169425823785b5fc8978b.zip
Refactor base installation module
Diffstat (limited to 'modules/base_installation/files/cronie/puppet-post-merge')
-rw-r--r--modules/base_installation/files/cronie/puppet-post-merge15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/base_installation/files/cronie/puppet-post-merge b/modules/base_installation/files/cronie/puppet-post-merge
new file mode 100644
index 0000000..ac5e3ff
--- /dev/null
+++ b/modules/base_installation/files/cronie/puppet-post-merge
@@ -0,0 +1,15 @@
1#!/bin/bash
2## Run Puppet locally using puppet apply
3git submodule update --init
4/usr/bin/puppet apply `pwd`/manifests/site.pp
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