diff options
author | varac <varacanero@zeromail.org> | 2012-12-19 10:56:06 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2012-12-19 10:56:06 +0100 |
commit | e97a022b52291a2593ee0efbab4c1b8f9d60be01 (patch) | |
tree | 6e9750da5f3ff8d3856af92199f53a5470bbc638 /puppet/modules/site_config/manifests | |
parent | 9115e761133cd06e369a22cc357ba718f1fa6020 (diff) |
move apt-get upgrade to inital stage
Diffstat (limited to 'puppet/modules/site_config/manifests')
-rw-r--r-- | puppet/modules/site_config/manifests/init.pp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/puppet/modules/site_config/manifests/init.pp b/puppet/modules/site_config/manifests/init.pp index ef4ffbd3..69ff2523 100644 --- a/puppet/modules/site_config/manifests/init.pp +++ b/puppet/modules/site_config/manifests/init.pp @@ -6,6 +6,7 @@ class site_config { # configure apt include site_apt + # configure ssh and include ssh-keys include site_config::sshd @@ -20,4 +21,8 @@ class site_config { class { 'site_config::hosts': stage => initial, } + + class { 'site_apt::dist_upgrade': + stage => initial, + } } |