]> gitweb.fluxo.info Git - puppet-apt.git/commitdiff
Merge branch 'bug/fix_push' into leap
authorMicah Anderson <micah@riseup.net>
Tue, 25 Jun 2013 20:57:07 +0000 (16:57 -0400)
committerMicah Anderson <micah@riseup.net>
Tue, 25 Jun 2013 20:57:07 +0000 (16:57 -0400)
This gets us fixes for the unattended_upgrades in wheezy, as well as the custom_key_dir class parameter replacement of the global variable
Conflicts:
manifests/unattended_upgrades.pp

1  2 
manifests/init.pp
manifests/unattended_upgrades.pp

Simple merge
index 3492e5fba1aec0ddcccd2c158fa29fab18cfa0d0,2f6c2a55cf9b64d5f72b588d61db65219f1264d7..17455fe9e0b0e22aa23dfe3d2635561a008fe93f
@@@ -6,16 -6,17 +6,15 @@@ 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' ],
-     require     => Package['unattended-upgrades'],
-     refresh_apt => false
+     source  => [
+                 "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'],
    }
  
 -  if $apt::custom_preferences != false {
 -    Apt_conf['50unattended-upgrades'] {
 -      before => File['apt_config'],
 -    }
 +  Apt_conf['50unattended-upgrades'] {
 +    notify => undef
    }
  }