summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-10-29 13:31:38 -0200
committerSilvio Rhatto <rhatto@riseup.net>2015-10-29 13:31:38 -0200
commit4c4823c1b622352706ae7ccba591c24bb08acbf5 (patch)
tree12476abeb277c93db137ef3f612a31f5d05fd9c1
parent975fc65d3aeb153dd08770c8e9e7a727c3fbedda (diff)
downloadpuppet-websites-4c4823c1b622352706ae7ccba591c24bb08acbf5.tar.gz
puppet-websites-4c4823c1b622352706ae7ccba591c24bb08acbf5.tar.bz2
Comment out removal of untagged instances
-rw-r--r--manifests/resources.pp22
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,
+ #}
}