diff options
author | varac <varacanero@zeromail.org> | 2013-09-20 19:08:40 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2013-09-20 19:08:40 +0200 |
commit | 3d4960e59c1c742fc0706b37a40e03b698865587 (patch) | |
tree | 681ed94dcfc806d530c08dd732c6631cfeb7d85e /puppet/modules | |
parent | 0bf2c2eeaf5f8b683454ce0d0dbe88bb6f17c08f (diff) | |
parent | 98d8a337930d5afaf78d88c23adb985a7060f66b (diff) |
Merge branch 'feature/3782_Discuss_run_stages_on_deploy' into develop
Diffstat (limited to 'puppet/modules')
-rw-r--r-- | puppet/modules/site_config/manifests/default.pp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/puppet/modules/site_config/manifests/default.pp b/puppet/modules/site_config/manifests/default.pp index b27e99af..16932ab2 100644 --- a/puppet/modules/site_config/manifests/default.pp +++ b/puppet/modules/site_config/manifests/default.pp @@ -3,6 +3,15 @@ class site_config::default { $domain_hash = hiera('domain') + # make sure apt is updated before any packages are installed + include apt::update + Package { require => Exec['apt_updated'] } + + include stdlib + + include site_config::slow + + include concat::setup # default class, used by all hosts |