diff options
author | varac <varacanero@zeromail.org> | 2013-01-29 16:39:23 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2013-01-29 16:39:23 +0100 |
commit | d0bec7ba086aadefba3655509db6c5b25b116bfb (patch) | |
tree | 4a4784123dc95fb45475d5a901624d31b312a65f /puppet/manifests | |
parent | be81edd7aa5e35c9bd79cd77946e6e7d17288bee (diff) |
run stage declaration moved to site.pp
Diffstat (limited to 'puppet/manifests')
-rw-r--r-- | puppet/manifests/site.pp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/puppet/manifests/site.pp b/puppet/manifests/site.pp index 1a76e3bd..33566f0c 100644 --- a/puppet/manifests/site.pp +++ b/puppet/manifests/site.pp @@ -1,6 +1,10 @@ # set a default exec path Exec { path => '/usr/bin:/usr/sbin/:/bin:/sbin:/usr/local/bin:/usr/local/sbin' } +stage { 'initial': + before => Stage['main'], +} + node 'default' { # prerequisites import 'common' @@ -11,7 +15,7 @@ node 'default' { # include some basic classes include site_config } else { - notice ('NOT applying site_config') + notice ('NOT applying site_config') } # parse services for host |