aboutsummaryrefslogtreecommitdiff
path: root/manifests/sources_list.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-01-26 14:42:17 +0100
committervarac <varacanero@zeromail.org>2016-02-01 20:25:46 +0100
commitf12b007edd557e91359fd9a5fba57f49e4a59a04 (patch)
tree1d7e9fbab069b5124f4ab194824a626b2243474c /manifests/sources_list.pp
parentfa1751c4de0154de7431ea18f57ddaeff329cf73 (diff)
downloadpuppet-apt-f12b007edd557e91359fd9a5fba57f49e4a59a04.tar.gz
puppet-apt-f12b007edd557e91359fd9a5fba57f49e4a59a04.tar.bz2
[refactor] Unify `apt-get update` into one resource
Before, there were two Execs that did an `apt-get update`, `Exec[refresh_apt]` and `Exec[apt_updated]`, which were triggered by different resources. This changes gets rid of the first one, and all resources now depend on `Exec[apt_updated]`.
Diffstat (limited to 'manifests/sources_list.pp')
-rw-r--r--manifests/sources_list.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/sources_list.pp b/manifests/sources_list.pp
index aefad2d..0ee068d 100644
--- a/manifests/sources_list.pp
+++ b/manifests/sources_list.pp
@@ -23,7 +23,7 @@ define apt::sources_list (
file { "/etc/apt/sources.list.d/${realname}.list":
ensure => $ensure,
owner => root, group => 0, mode => '0644',
- notify => Exec['refresh_apt'],
+ notify => Exec['apt_updated'],
}
if $source {