diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/subsystems/websites.pp | 6 |
1 files 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, } |