diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-03-22 23:02:59 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-03-22 23:02:59 -0300 |
commit | 9e73cfde5e5e7246fd5758099db5136ff9e18309 (patch) | |
tree | f8097bb7a6ec674718ff852d8450bf3714ddbf2b | |
parent | 9f56762b5b475ae535ad5d75c00c611c6fd5d84f (diff) | |
download | puppet-apache-9e73cfde5e5e7246fd5758099db5136ff9e18309.tar.gz puppet-apache-9e73cfde5e5e7246fd5758099db5136ff9e18309.tar.bz2 |
Removing user requirement when site should be absent
-rw-r--r-- | manifests/init.pp | 3 |
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, } } } |