diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 13:31:38 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-10-29 13:31:38 -0200 |
commit | 4c4823c1b622352706ae7ccba591c24bb08acbf5 (patch) | |
tree | 12476abeb277c93db137ef3f612a31f5d05fd9c1 | |
parent | 975fc65d3aeb153dd08770c8e9e7a727c3fbedda (diff) | |
download | puppet-websites-4c4823c1b622352706ae7ccba591c24bb08acbf5.tar.gz puppet-websites-4c4823c1b622352706ae7ccba591c24bb08acbf5.tar.bz2 |
Comment out removal of untagged instances
-rw-r--r-- | manifests/resources.pp | 22 |
1 files changed, 11 insertions, 11 deletions
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, + #} } |