diff options
author | varac <varacanero@zeromail.org> | 2016-02-01 16:53:10 +0100 |
---|---|---|
committer | kwadronaut <kwadronaut@leap.se> | 2016-02-02 19:38:35 +0100 |
commit | 559b2ccaa71e2c5c459d7a6bea39de975f15cb1c (patch) | |
tree | aebf7e64f1c3a4a1a70e2147f9e8f059568d8bfb /puppet/modules/site_apt/manifests | |
parent | 65d1d6da0dc76803f26668e92acda11cfc4bbf16 (diff) |
[refactor] Use Exec[apt_updated] instead of Exec[refresh_apt]
Because this is the recommended way of depnending in the apt README.
Diffstat (limited to 'puppet/modules/site_apt/manifests')
-rw-r--r-- | puppet/modules/site_apt/manifests/dist_upgrade.pp | 2 | ||||
-rw-r--r-- | puppet/modules/site_apt/manifests/init.pp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/puppet/modules/site_apt/manifests/dist_upgrade.pp b/puppet/modules/site_apt/manifests/dist_upgrade.pp index 40e2dd58..0eb98cea 100644 --- a/puppet/modules/site_apt/manifests/dist_upgrade.pp +++ b/puppet/modules/site_apt/manifests/dist_upgrade.pp @@ -11,7 +11,7 @@ class site_apt::dist_upgrade { command => "/usr/bin/apt-get -q -y -o 'DPkg::Options::=--force-confold' dist-upgrade", refreshonly => false, timeout => 1200, - require => Exec['refresh_apt'] + require => Exec['apt_updated'] } } } diff --git a/puppet/modules/site_apt/manifests/init.pp b/puppet/modules/site_apt/manifests/init.pp index fea4b8e7..04b1ce69 100644 --- a/puppet/modules/site_apt/manifests/init.pp +++ b/puppet/modules/site_apt/manifests/init.pp @@ -55,7 +55,7 @@ class site_apt { # All packages should be installed _after_ refresh_apt is called, # which does an apt-get update. - Exec['refresh_apt'] -> + Exec['apt_updated'] -> Package <||> } |