diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-11-29 21:16:38 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-11-29 21:16:38 -0200 |
commit | 8dc7c1c3edd2301cfc95d82b5a28bcf606324f56 (patch) | |
tree | 594c446586374b379858b715cc0c11f42a073026 /manifests/subsystems/websites.pp | |
parent | de96d3620ecf0571eb59192b87da937d36486fac (diff) | |
download | puppet-nodo-8dc7c1c3edd2301cfc95d82b5a28bcf606324f56.tar.gz puppet-nodo-8dc7c1c3edd2301cfc95d82b5a28bcf606324f56.tar.bz2 |
Fixing virtual resource invocation
Diffstat (limited to 'manifests/subsystems/websites.pp')
-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 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, } |