From: Silvio Rhatto Date: Sun, 14 Apr 2013 19:17:39 +0000 (-0300) Subject: Avoid variable lookup on apt::unattended_upgrades X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=ee15eb570d941ac4113bfad37a539a7e3636f8d2;p=puppet-apt.git Avoid variable lookup on apt::unattended_upgrades The current lookup for '::apt::custom_preferences' might lead to a lookup error like (Scope(Class[Apt::Unattended_upgrades])) Could not look up qualified variable '::apt::custom_preferences'; class ::apt has not been evaluated at /etc/puppet/modules/apt/manifests/unattended_upgrades.pp:17 Since the lookup apparently happens during compilation time, this commits tries to fix this issue by using a define() function call instead of the lookup. --- diff --git a/manifests/unattended_upgrades.pp b/manifests/unattended_upgrades.pp index 4df9b8a..2a6fe9e 100644 --- a/manifests/unattended_upgrades.pp +++ b/manifests/unattended_upgrades.pp @@ -14,7 +14,7 @@ class apt::unattended_upgrades { require => Package['unattended-upgrades'], } - if $::apt::custom_preferences != false { + if defined(File['apt_config']) { Apt_conf['50unattended-upgrades'] { before => File['apt_config'], }