diff options
author | intrigeri <intrigeri@boum.org> | 2010-12-15 09:47:57 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2010-12-15 09:47:57 +0100 |
commit | af8ecf1e9f6745a2c2d8c09b0f1e1d7c572981b9 (patch) | |
tree | 22b48aa33ff5386e7f31c4f3dec7101ea9b6e41b /manifests/update.pp | |
parent | 4979889584b2b150e43f9930f5eccbf6cf5245fa (diff) |
Repair Exec['update_apt'] to run apt-get update when needed.
Move this Exec to a dedicated class that is not included by default i.e. we
default not to "apt-get update" on every Puppet run.
We now make use of this class in the apt::upgrade_package define to make sure
APT indexes are up-to-date before attempting package upgrades.
One may now use the following to ensure current packages are installed by
Package resources:
include apt::update
Package { require => Exec[apt_updated] }
Diffstat (limited to 'manifests/update.pp')
-rw-r--r-- | manifests/update.pp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/update.pp b/manifests/update.pp new file mode 100644 index 0000000..ae992f4 --- /dev/null +++ b/manifests/update.pp @@ -0,0 +1,12 @@ +class apt::update { + + exec { 'update_apt': + command => '/usr/bin/apt-get update && /usr/bin/apt-get autoclean', + require => [ File['/etc/apt/apt.conf.d', '/etc/apt/preferences' ], + Config_file['/etc/apt/sources.list'] ], + loglevel => info, + # Another Semaphor for all packages to reference + alias => "apt_updated" + } + +} |