]> gitweb.fluxo.info Git - puppet-nodo.git/commitdiff
Trying to fix a syntax error
authorSilvio Rhatto <rhatto@riseup.net>
Tue, 29 Nov 2011 23:52:25 +0000 (21:52 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Tue, 29 Nov 2011 23:52:25 +0000 (21:52 -0200)
manifests/subsystems/websites.pp

index 609b8417f155cca3ca70495bc62e9151be0f4dd4..5d50e104b88de3824ff4ee91f3a1ff29e65c93f7 100644 (file)
@@ -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,
   }