aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-07-06 13:51:59 -0300
committerSilvio Rhatto <rhatto@riseup.net>2015-07-06 13:51:59 -0300
commit47c83e6fc82afd55110c9184234e31dc751e5347 (patch)
tree62ca4e83375c166858421e5ee934d3fa068ebebf /manifests
parent6f0a560671461c477ea3868fe10abcd37163aff5 (diff)
downloadpuppet-bootstrap-47c83e6fc82afd55110c9184234e31dc751e5347.tar.gz
puppet-bootstrap-47c83e6fc82afd55110c9184234e31dc751e5347.tar.bz2
Vagrant provisioning fixes
Diffstat (limited to 'manifests')
-rw-r--r--manifests/bootstrap/vagrant.pp35
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,
-}