]> gitweb.fluxo.info Git - puppet-nodo.git/commitdiff
Fixing virtual resource invocation
authorSilvio Rhatto <rhatto@riseup.net>
Tue, 29 Nov 2011 23:16:38 +0000 (21:16 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Tue, 29 Nov 2011 23:16:38 +0000 (21:16 -0200)
manifests/subsystems/websites.pp

index 2a84c53a08fbc25ab74cf89af0c9976ccd010716..5f54bcfeaeca0f0a8737db252cf5673e9db920aa 100644 (file)
@@ -141,19 +141,19 @@ class websites::hosting inherits websites::setup {
   include pmwiki
   include apache::rails
 
-  Apache::site       <| tag == $nodename or tag == 'all' or tag == undef |>
-  Database::instance <| tag == $nodename or tag == 'all' or tag == undef |>
-  Ikiwiki::instance  <| tag == $nodename or tag == 'all' or tag == undef |>
+  Apache::Site       <| tag == $nodename or tag == 'all' or tag == undef |>
+  Database::Instance <| tag == $nodename or tag == 'all' or tag == undef |>
+  Ikiwiki::Instance  <| tag == $nodename or tag == 'all' or tag == undef |>
 
-  Apache::site <| tag != $nodename and tag != 'all' and tag != undef |> {
+  Apache::Site <| tag != $nodename and tag != 'all' and tag != undef |> {
     ensure => absent,
   }
 
-  Database::instance <| tag != $nodename and tag != 'all' and tag != undef  |> {
+  Database::Instance <| tag != $nodename and tag != 'all' and tag != undef  |> {
     ensure => absent,
   }
 
-  Ikiwiki::instance <| tag != $nodename and tag != 'all' and tag != undef |> {
+  Ikiwiki::Instance <| tag != $nodename and tag != 'all' and tag != undef |> {
     ensure => absent,
   }