]> gitweb.fluxo.info Git - puppet-websites.git/commitdiff
Comment out removal of untagged instances
authorSilvio Rhatto <rhatto@riseup.net>
Thu, 29 Oct 2015 15:31:38 +0000 (13:31 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Thu, 29 Oct 2015 15:31:38 +0000 (13:31 -0200)
manifests/resources.pp

index 5b4a19da16eca8a8b15e8c22bd3fae431d28e534..15550cdfeaad39b3f085f4e03cca56bf3cdb409f 100644 (file)
@@ -12,17 +12,17 @@ class websites::resources {
   create_resources('domain_check::instance', $domains)
 
   # Remove untagged site instances
-  Apache::Site <| tag != $::hostname and tag != 'all' |> {
-    ensure => absent,
-  }
-
+  #Apache::Site <| tag != $::hostname and tag != 'all' |> {
+  #  ensure => absent,
+  #}
+  #
   # Remove untagged database instances
-  Database::Instance <| tag != $::hostname and tag != 'all' |> {
-    ensure => absent,
-  }
-
+  #Database::Instance <| tag != $::hostname and tag != 'all' |> {
+  #  ensure => absent,
+  #}
+  #
   # Remove untagged ikiwiki instances
-  Ikiwiki::Instance <| tag != $::hostname and tag != 'all' |> {
-    ensure => absent,
-  }
+  #Ikiwiki::Instance <| tag != $::hostname and tag != 'all' |> {
+  #  ensure => absent,
+  #}
 }