From 0d75774fb8c522fcb5fb238224fa40d07c5b2a31 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Tue, 29 Nov 2011 21:58:16 -0200 Subject: Trying to fix a syntax error (3) --- manifests/subsystems/websites.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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, } -- cgit v1.2.3