aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-03-23 20:35:44 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-03-23 20:35:44 -0300
commitd5abc5205803624b2e6187da8f5dfc2d17baafc6 (patch)
tree68f981ea044fe79040fd470971f7fad50a9c966a
parent5a2a2034b3d9c8568b4601b8f42a1b4e2e63f031 (diff)
downloadpuppet-nodo-d5abc5205803624b2e6187da8f5dfc2d17baafc6.tar.gz
puppet-nodo-d5abc5205803624b2e6187da8f5dfc2d17baafc6.tar.bz2
Use augeas module
-rw-r--r--manifests/base.pp1
-rw-r--r--manifests/utils.pp5
2 files changed, 1 insertions, 5 deletions
diff --git a/manifests/base.pp b/manifests/base.pp
index aaeabec..465bc2a 100644
--- a/manifests/base.pp
+++ b/manifests/base.pp
@@ -30,6 +30,7 @@ class nodo::base {
include concat::setup
include cron
include shellprompt
+ include augeas
# Require admin accounts' class
if (defined(site_users::admin)) {
diff --git a/manifests/utils.pp b/manifests/utils.pp
index fc03d69..af9092a 100644
--- a/manifests/utils.pp
+++ b/manifests/utils.pp
@@ -28,9 +28,4 @@ class nodo::utils inherits nodo::utils::base {
owner => root,
group => root,
}
-
- # Ensure we have augeas
- package { [ 'augeas-tools' ]:
- ensure => present,
- }
}