Sha256: f46acedab5c24f8512b1100b3564f074d4f8b3041fc312c84909a96efa0f2811

Contents?: true

Size: 717 Bytes

Versions: 8

Compression:

Stored size: 717 Bytes

Contents

# Update puppet.conf to add the manifestdir directive to point to the
# /manifests mount, if the directive isn't already present.
sed -i '
2 {
/manifest/ !i\
    manifestdir = /manifests
}
' /etc/puppetlabs/puppet/puppet.conf

# Update puppet.conf to add the modulepath directive to point to the
# /module mount, if it hasn't already been set.
sed -i '
/modulepath/ {
/vagrant/ !s,$,:/modules,
}
' /etc/puppetlabs/puppet/puppet.conf

# Rewrite the olde site.pp config since it's not used, and warn people
# about this.
echo '# /etc/puppetlabs/puppet/manifests is not used; see /manifests.' > /etc/puppetlabs/puppet/manifests/site.pp

# Enable autosigning on the master
echo '*' > /etc/puppetlabs/puppet/autosign.conf

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
vagrant-pe_build-0.3.0 templates/scripts/relocate_installation.sh
vagrant-pe_build-0.2.0 templates/scripts/relocate_installation.sh
vagrant-pe_build-0.1.0 templates/scripts/relocate_installation.sh
vagrant-pe_build-0.0.3 bootstrap/master/post/relocate_puppet.sh
vagrant-pe_build-0.0.2 bootstrap/master/post/relocate_puppet.sh
vagrant-pe_build-0.0.1 bootstrap/master/post/relocate_puppet.sh
oscar-0.2.0alpha2 bootstrap/master/post/relocate_puppet.sh
oscar-0.2.0alpha1 bootstrap/master/post/relocate_puppet.sh