diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-11-29 21:58:16 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-11-29 21:58:16 -0200 |
commit | 0d75774fb8c522fcb5fb238224fa40d07c5b2a31 (patch) | |
tree | d9c1d11273c833066a4a317962caa9d85c727970 /manifests/subsystems | |
parent | 66bc95a680bf90684e34016a79caf9b95f7f277c (diff) | |
download | puppet-nodo-0d75774fb8c522fcb5fb238224fa40d07c5b2a31.tar.gz puppet-nodo-0d75774fb8c522fcb5fb238224fa40d07c5b2a31.tar.bz2 |
Trying to fix a syntax error (3)
Diffstat (limited to 'manifests/subsystems')
-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, } |