diff options
author | mh <mh@immerda.ch> | 2011-06-05 14:58:22 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2011-06-05 14:58:22 +0200 |
commit | 54932c9c215154311765a63d41a9d105cfc76c02 (patch) | |
tree | 797fc48d9079c91b909377ea47319ff96a02523a /manifests | |
parent | 4e6f65b0d5445c3d96ade7acef13b3e145b7af65 (diff) |
fix unattended upgrades
as we use $lsbdistcodename as source we cannot name the sources
which should be used to update "stable". -> Fix it by deploying
a per lsbdistcodename configfile. This can also be used as a pre-
work for the #2681 shared modules bug.
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/unattended_upgrades.pp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/manifests/unattended_upgrades.pp b/manifests/unattended_upgrades.pp index b90fcbb..3baffad 100644 --- a/manifests/unattended_upgrades.pp +++ b/manifests/unattended_upgrades.pp @@ -8,8 +8,7 @@ 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/apt/$lsbdistcodename/50unattended-upgrades" ], require => Package['unattended-upgrades'], } |