aboutsummaryrefslogtreecommitdiff
path: root/manifests/apt_conf.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-01-17 18:52:18 -0200
committerSilvio Rhatto <rhatto@riseup.net>2013-01-17 18:52:18 -0200
commit8bfd579a82b6f824b0184bb2e33a384254426eec (patch)
tree7fb5cb27698d03883375b6977736f37359651c3e /manifests/apt_conf.pp
parent2fea12cace6595cb545402fd08dc0a5c78e35507 (diff)
parent02bd3269948f1a3c5a586e581a7fec22da69a2cc (diff)
downloadpuppet-apt-8bfd579a82b6f824b0184bb2e33a384254426eec.tar.gz
puppet-apt-8bfd579a82b6f824b0184bb2e33a384254426eec.tar.bz2
Merge branch 'master' of git://labs.riseup.net/module_apt
Diffstat (limited to 'manifests/apt_conf.pp')
-rw-r--r--manifests/apt_conf.pp7
1 files changed, 6 insertions, 1 deletions
diff --git a/manifests/apt_conf.pp b/manifests/apt_conf.pp
index c484ec3..fe07546 100644
--- a/manifests/apt_conf.pp
+++ b/manifests/apt_conf.pp
@@ -12,10 +12,15 @@ define apt::apt_conf(
fail("Only one of \$source or \$content must specified for apt_conf ${name}")
}
+ include apt::dot_d_directories
+
+ # One would expect the 'file' resource on sources.list.d to trigger an
+ # apt-get update when files are added or modified in the directory, but it
+ # apparently doesn't.
file { "/etc/apt/apt.conf.d/${name}":
ensure => $ensure,
+ owner => root, group => 0, mode => 0644,
notify => Exec["refresh_apt"],
- owner => root, group => 0, mode => 0644;
}
if $source {