diff options
-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, + } +} |