aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-01-24 11:56:58 -0200
committerSilvio Rhatto <rhatto@riseup.net>2014-01-24 11:56:58 -0200
commitd990fed47634835c5f7e5ddfadacb9a764b2c678 (patch)
treeb148eb61446dc4da9fbce55b51b3ca3546d81b13 /manifests
parentb349c943f9b495a55cac624d9cc5379f4cb94b35 (diff)
downloadpuppet-nodo-d990fed47634835c5f7e5ddfadacb9a764b2c678.tar.gz
puppet-nodo-d990fed47634835c5f7e5ddfadacb9a764b2c678.tar.bz2
Adding nodo::utils::vagrant
Diffstat (limited to 'manifests')
-rw-r--r--manifests/role/vagrant.pp2
-rw-r--r--manifests/utils/vagrant.pp6
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,
+ }
+}