aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2010-10-17 16:46:55 +0200
committerintrigeri <intrigeri@boum.org>2010-10-17 16:46:55 +0200
commite0e1b80c4e106f0fc2dff9356d32d9fcba41846d (patch)
treef36e9faf91c7b87888eeac951eb9866b789e0a13 /manifests
parent3f20c7823e607f1b3944701b261f642adb9626be (diff)
downloadpuppet-apt-e0e1b80c4e106f0fc2dff9356d32d9fcba41846d.tar.gz
puppet-apt-e0e1b80c4e106f0fc2dff9356d32d9fcba41846d.tar.bz2
No need to update APT lists when pinning changes (bis).
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 409f3a8..25b7661 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -146,10 +146,10 @@ class apt {
command => '/usr/bin/apt-get update && sleep 1',
refreshonly => true,
subscribe => [ File["/etc/apt/apt.conf.d"],
- Config_file["/etc/apt/sources.list", "apt_config"] ];
+ Config_file["/etc/apt/sources.list"] ];
'update_apt':
command => '/usr/bin/apt-get update && /usr/bin/apt-get autoclean',
- require => [ Config_file["/etc/apt/sources.list", "apt_config"] ],
+ require => [ Config_file["/etc/apt/sources.list"] ],
loglevel => info,
# Another Semaphor for all packages to reference
alias => "apt_updated";