aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-04-14 14:54:10 +0200
committervarac <varacanero@zeromail.org>2013-04-14 14:54:10 +0200
commit355372f31cc93ea975c89dc2977d942ee048fe9d (patch)
tree3b8b523869861fe40c12ed7f72faa2159681740f /manifests
parent07c8041b75b1a8b7c1986885690423792576d8cd (diff)
downloadpuppet-apt-355372f31cc93ea975c89dc2977d942ee048fe9d.tar.gz
puppet-apt-355372f31cc93ea975c89dc2977d942ee048fe9d.tar.bz2
using distribution sprecific files again
Diffstat (limited to 'manifests')
-rw-r--r--manifests/unattended_upgrades.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/unattended_upgrades.pp b/manifests/unattended_upgrades.pp
index c538831..f74fc81 100644
--- a/manifests/unattended_upgrades.pp
+++ b/manifests/unattended_upgrades.pp
@@ -7,10 +7,10 @@ class apt::unattended_upgrades {
apt_conf { '50unattended-upgrades':
source => [
- "puppet:///modules/site_apt/${::lsbdistcodename}/50unattended-upgrades",
- 'puppet:///modules/site_apt/50unattended-upgrades',
- "puppet:///modules/apt/${::lsbdistcodename}/50unattended-upgrades",
- 'puppet:///modules/apt/50unattended-upgrades' ],
+ "puppet:///modules/site_apt/${::lsbdistid}/50unattended-upgrades.${::lsbdistcodename}",
+ "puppet:///modules/site_apt/${::lsbdistid}/50unattended-upgrades",
+ "puppet:///modules/apt/${::lsbdistid}/50unattended-upgrades.${::lsbdistcodename}",
+ "puppet:///modules/apt/${::lsbdistid}/50unattended-upgrades" ],
require => Package['unattended-upgrades'],
}