diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-02-07 17:05:52 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-02-07 17:05:52 -0200 |
commit | 9eda5332167ffb2f511ce7f88cd5b08f100a62ad (patch) | |
tree | 38550f6e036c7e096b2584b335520cfb921ab3ef /manifests | |
parent | c28e7f079746fb4792f540fcadd958994c5e7966 (diff) | |
download | puppet-nodo-9eda5332167ffb2f511ce7f88cd5b08f100a62ad.tar.gz puppet-nodo-9eda5332167ffb2f511ce7f88cd5b08f100a62ad.tar.bz2 |
Adding nodo::backup and nodo::test
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index c9e7130..182536e 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -370,10 +370,6 @@ class nodo::web inherits nodo::vserver { } } -class nodo::proxy inherits nodo::vserver { - include nginx -} - class nodo::master { # Puppetmaster should be included before nodo::vserver include puppetmasterd @@ -410,3 +406,15 @@ class nodo::master { ensure => present, } } + +class nodo::proxy inherits nodo::vserver { + include nginx +} + +class nodo::backup inherits nodo::vserver { + # Class for backup hosting nodes +} + +class nodo::test inherits nodo::web { + # Class for test nodes +} |