From: Silvio Rhatto Date: Tue, 29 Nov 2011 23:16:38 +0000 (-0200) Subject: Fixing virtual resource invocation X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=8dc7c1c3edd2301cfc95d82b5a28bcf606324f56;p=puppet-nodo.git Fixing virtual resource invocation --- diff --git a/manifests/subsystems/websites.pp b/manifests/subsystems/websites.pp index 2a84c53..5f54bcf 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 == $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, }