diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-11-29 21:52:25 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-11-29 21:52:25 -0200 |
commit | 16134519bd4b765c1aa2636ddb4b1b852e4f16fc (patch) | |
tree | 1a704e6b2ca4ab866fbe31253c53bb4667bf7f97 /manifests | |
parent | 9795ffa9f0ee4d21556cc19c6bc56ac01ad536ac (diff) | |
download | puppet-nodo-16134519bd4b765c1aa2636ddb4b1b852e4f16fc.tar.gz puppet-nodo-16134519bd4b765c1aa2636ddb4b1b852e4f16fc.tar.bz2 |
Trying to fix a syntax error
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/subsystems/websites.pp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/manifests/subsystems/websites.pp b/manifests/subsystems/websites.pp index 609b841..5d50e10 100644 --- a/manifests/subsystems/websites.pp +++ b/manifests/subsystems/websites.pp @@ -141,19 +141,19 @@ class websites::hosting inherits websites::setup { include pmwiki include apache::rails - Apache::Site <| tag == $hostname or tag == 'all' or tag == undef |> - Database::Instance <| tag == $hostname or tag == 'all' or tag == undef |> - Ikiwiki::Instance <| tag == $hostname or tag == 'all' or tag == undef |> + Apache::Site <| (tag == $hostname or tag == 'all' or tag == undef) |> + Database::Instance <| (tag == $hostname or tag == 'all' or tag == undef) |> + Ikiwiki::Instance <| (tag == $hostname or tag == 'all' or tag == undef) |> - Apache::Site <| tag != $hostname and tag != 'all' and tag != undef |> { + Apache::Site <| (tag != $hostname and tag != 'all' and tag != undef) |> { ensure => absent, } - Database::Instance <| tag != $hostname and tag != 'all' and tag != undef |> { + Database::Instance <| (tag != $hostname and tag != 'all' and tag != undef) |> { ensure => absent, } - Ikiwiki::Instance <| tag != $hostname and tag != 'all' and tag != undef |> { + Ikiwiki::Instance <| (tag != $hostname and tag != 'all' and tag != undef) |> { ensure => absent, } |