summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2011-05-24 11:25:51 -0700
committerJeff McCune <jeff@puppetlabs.com>2011-05-24 11:25:51 -0700
commit6f8b78cc67e1b4ccb4b16b9264e0e6ae5313962f (patch)
treef9f5fb84dc0e1a88160934e3d3a553b88c7ec3cd /manifests/init.pp
parent6964d13b2637655dae828d882cf292ef251f378d (diff)
Add standard set of run stages.
Many modules I'm working on need a standard but relatively granular location in the catalog. For example, any module that configures the packaging system should run "early" Add the following stages which have inter-dependencies in the top to bottom order listed: * setup * deploy * runtime * setup_infra * deploy_infra * main * setup_app * deploy_app
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp1
1 files changed, 1 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index a3f2406..c804568 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -13,5 +13,6 @@
# [Remember: No empty lines between comments and class definition]
class stdlib {
+ class { 'stdlib::stages': }
}