From: Silvio Rhatto Date: Tue, 29 Nov 2011 23:58:16 +0000 (-0200) Subject: Trying to fix a syntax error (3) X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=0d75774fb8c522fcb5fb238224fa40d07c5b2a31;p=puppet-nodo.git Trying to fix a syntax error (3) --- diff --git a/manifests/subsystems/websites.pp b/manifests/subsystems/websites.pp index 16a93d1..21b924f 100644 --- a/manifests/subsystems/websites.pp +++ b/manifests/subsystems/websites.pp @@ -145,15 +145,15 @@ class websites::hosting inherits websites::setup { Database::Instance <| tag == $hostname or tag == 'all' or tag == '' |> Ikiwiki::Instance <| tag == $hostname or tag == 'all' or tag == '' |> - Apache::Site <| (tag != $hostname and tag != 'all' and tag != '' |> { + Apache::Site <| tag != $hostname and tag != 'all' and tag != '' |> { ensure => absent, } - Database::Instance <| (tag != $hostname and tag != 'all' and tag != '' |> { + Database::Instance <| tag != $hostname and tag != 'all' and tag != '' |> { ensure => absent, } - Ikiwiki::Instance <| (tag != $hostname and tag != 'all' and tag != '' |> { + Ikiwiki::Instance <| tag != $hostname and tag != 'all' and tag != '' |> { ensure => absent, }