Touch site.pp after git updates.

* modules/openstack_project/manifests/puppetmaster.pp: Ryan_Lane
indicates the puppet master maintains a cache which can be invalidated
by touching the site.pp file. Do so in order to have puppet runs after a
puppet update use the new content rather than the old.

Change-Id: I5422e7eecfd1d82a6a4416951dda6afbc855de3e
This commit is contained in:
Clark Boylan 2013-10-17 16:30:43 -07:00
parent a5ece77a7c
commit 281f7799a5

@ -16,7 +16,7 @@ class openstack_project::puppetmaster (
cron { 'updatepuppetmaster':
user => 'root',
minute => '*/15',
command => 'sleep $((RANDOM\%600)) && cd /opt/config/production && git fetch -q && git reset -q --hard @{u} && ./install_modules.sh',
command => 'sleep $((RANDOM\%600)) && cd /opt/config/production && git fetch -q && git reset -q --hard @{u} && ./install_modules.sh && touch manifests/site.pp',
environment => 'PATH=/var/lib/gems/1.8/bin:/usr/bin:/bin:/usr/sbin:/sbin',
}