From: Silvio Rhatto Date: Thu, 29 Oct 2015 15:31:38 +0000 (-0200) Subject: Comment out removal of untagged instances X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=4c4823c1b622352706ae7ccba591c24bb08acbf5;p=puppet-websites.git Comment out removal of untagged instances --- diff --git a/manifests/resources.pp b/manifests/resources.pp index 5b4a19d..15550cd 100644 --- a/manifests/resources.pp +++ b/manifests/resources.pp @@ -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, + #} }