summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-03-22 23:02:59 -0300
committerSilvio Rhatto <rhatto@riseup.net>2011-03-22 23:02:59 -0300
commit9e73cfde5e5e7246fd5758099db5136ff9e18309 (patch)
treef8097bb7a6ec674718ff852d8450bf3714ddbf2b /manifests
parent9f56762b5b475ae535ad5d75c00c611c6fd5d84f (diff)
downloadpuppet-apache-9e73cfde5e5e7246fd5758099db5136ff9e18309.tar.gz
puppet-apache-9e73cfde5e5e7246fd5758099db5136ff9e18309.tar.bz2
Removing user requirement when site should be absent
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp3
1 files changed, 1 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 6c33b3e..6c44822 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -171,8 +171,7 @@ class apache {
if !defined(Group[$gid]) {
group { "$gid":
- ensure => absent,
- require => User[$user],
+ ensure => absent,
}
}
}