diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-07-06 13:51:59 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-07-06 13:51:59 -0300 |
commit | 47c83e6fc82afd55110c9184234e31dc751e5347 (patch) | |
tree | 62ca4e83375c166858421e5ee934d3fa068ebebf /manifests | |
parent | 6f0a560671461c477ea3868fe10abcd37163aff5 (diff) | |
download | puppet-bootstrap-47c83e6fc82afd55110c9184234e31dc751e5347.tar.gz puppet-bootstrap-47c83e6fc82afd55110c9184234e31dc751e5347.tar.bz2 |
Vagrant provisioning fixes
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/bootstrap/vagrant.pp | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/manifests/bootstrap/vagrant.pp b/manifests/bootstrap/vagrant.pp index e592d73..39c2b32 100644 --- a/manifests/bootstrap/vagrant.pp +++ b/manifests/bootstrap/vagrant.pp @@ -4,17 +4,6 @@ # # -# Stage definitions -# - -stage { 'first': - before => Stage['main'], -} - -stage { 'last': } -Stage['main'] -> Stage['last'] - -# # Class definitions # @@ -22,27 +11,3 @@ Stage['main'] -> Stage['last'] class { 'nodo': role => 'vagrant', } - -class vagrant_config { - # Symlink to the mounted module folder - file { '/etc/puppet/modules': - ensure => '/etc/puppet/modules-0', - force => true, - } - - # Ensure a custom hiera configuration - file { '/etc/puppet/hiera.yaml': - owner => root, - group => root, - mode => 0644, - force => true, - ensure => '/etc/puppet/hiera/hiera.yaml', - } -} - -# -# Class instantiations -# -class { 'vagrant_config': - stage => first, -} |