aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp4
-rw-r--r--manifests/web.pp11
2 files changed, 4 insertions, 11 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 716d0ab..fc71290 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -2,10 +2,6 @@
# Nodo module.
#
-# Stage definitions
-stage { 'nodo_setup': before => Stage['main'] }
-stage { 'nodo_ready': require => Stage['main'] }
-
# Import required modules
import "common"
import "sshd"
diff --git a/manifests/web.pp b/manifests/web.pp
index 8583921..caf031a 100644
--- a/manifests/web.pp
+++ b/manifests/web.pp
@@ -1,12 +1,9 @@
class nodo::web inherits nodo::vserver {
# Class for web nodes
-
- class {
- 'websites': stage => nodo_ready;
- 'database': stage => nodo_setup;
- 'users::virtual': stage => main;
- 'utils::web': stage => main;
- }
+ include websites
+ include database
+ include users::virtual
+ include utils::web
# Reprepro configuration
$reprepro_basedir = '/var/reprepro'