]> gitweb.fluxo.info Git - puppet-apache.git/commitdiff
Removing user requirement when site should be absent
authorSilvio Rhatto <rhatto@riseup.net>
Wed, 23 Mar 2011 02:02:59 +0000 (23:02 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Wed, 23 Mar 2011 02:02:59 +0000 (23:02 -0300)
manifests/init.pp

index 6c33b3efec1657ba8dc7820560c170030765c346..6c44822a89e3bbcc9f73d5bcbd9c519f5d79015a 100644 (file)
@@ -171,8 +171,7 @@ class apache {
 
         if !defined(Group[$gid]) {
           group { "$gid":
-            ensure  => absent,
-            require => User[$user],
+            ensure => absent,
           }
         }
       }