author "Monty Taylor " description "Applying puppet config on boot" start on runlevel[2345] script cd /root/openstack-ci-puppet/modules /usr/bin/git pull --ff-only echo "Installing modules" >> /var/log/manifest.log /bin/bash install_modules.sh >> /var/log/manifest.log echo "Running puppet on boot" >> /var/log/manifest.log date >> /var/log/manifest.log /usr/bin/puppet apply --modulepath=/root/openstack-ci-puppet/modules -l /var/log/manifest.log /root/openstack-ci-puppet/manifests/site.pp end script