diff options
author | Micah Anderson <micah@riseup.net> | 2013-02-12 13:45:20 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-02-12 14:06:16 -0500 |
commit | 2e03ec8c02a54c407c12964d243ba4ac5de15b99 (patch) | |
tree | 2304952730bf638089fd94f469dfe3ecff1a65b5 /puppet/manifests | |
parent | 2fd403476e77a545355443667408ba0cf6205fcd (diff) |
switch to using stdlib's standard stages
Diffstat (limited to 'puppet/manifests')
-rw-r--r-- | puppet/manifests/site.pp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/puppet/manifests/site.pp b/puppet/manifests/site.pp index 1ec806d9..c89bc7d1 100644 --- a/puppet/manifests/site.pp +++ b/puppet/manifests/site.pp @@ -1,9 +1,7 @@ # set a default exec path Exec { path => '/usr/bin:/usr/sbin/:/bin:/sbin:/usr/local/bin:/usr/local/sbin' } -stage { 'initial': - before => Stage['main'], -} +include stdlib import 'common' include site_config::default |