diff options
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 +} |