diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-01-24 11:56:58 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-01-24 11:56:58 -0200 |
commit | d990fed47634835c5f7e5ddfadacb9a764b2c678 (patch) | |
tree | b148eb61446dc4da9fbce55b51b3ca3546d81b13 | |
parent | b349c943f9b495a55cac624d9cc5379f4cb94b35 (diff) | |
download | puppet-nodo-d990fed47634835c5f7e5ddfadacb9a764b2c678.tar.gz puppet-nodo-d990fed47634835c5f7e5ddfadacb9a764b2c678.tar.bz2 |
Adding nodo::utils::vagrant
-rw-r--r-- | manifests/role/vagrant.pp | 2 | ||||
-rw-r--r-- | manifests/utils/vagrant.pp | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/manifests/role/vagrant.pp b/manifests/role/vagrant.pp index 4bdd5f6..034f706 100644 --- a/manifests/role/vagrant.pp +++ b/manifests/role/vagrant.pp @@ -38,7 +38,7 @@ class nodo::role::vagrant { include nodo::subsystem::local # Common utilities - include nodo::utils + include nodo::utils::vagrant # Other modules include concat::setup diff --git a/manifests/utils/vagrant.pp b/manifests/utils/vagrant.pp new file mode 100644 index 0000000..35dceb9 --- /dev/null +++ b/manifests/utils/vagrant.pp @@ -0,0 +1,6 @@ +class nodo::utils::vagrant inherits nodo::utils { + # No logcheck please + Package['logcheck'] { + ensure => purged, + } +} |