From: Silvio Rhatto Date: Sun, 14 Apr 2013 18:51:56 +0000 (-0300) Subject: Moving '::apt::unattended_upgrades' to the end of apt class X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=b432165cd092e15bbe920618be9214cf2586a3f8;p=puppet-nodo.git Moving '::apt::unattended_upgrades' to the end of apt class --- diff --git a/manifests/subsystem/apt.pp b/manifests/subsystem/apt.pp index 5b15b6e..fac90b3 100644 --- a/manifests/subsystem/apt.pp +++ b/manifests/subsystem/apt.pp @@ -8,11 +8,6 @@ class nodo::subsystem::apt { custom_key_dir => hiera('nodo::subsystem::apt::custom_key_dir', 'puppet:///modules/site_apt/keys.d') } - class { '::apt::unattended_upgrades': } - - # Class relationships - Class['::apt'] -> Class['::apt::unattended_upgrades'] - $apt_domain_source = hiera('nodo::subsystem::apt::domain_source', false) apt::sources_list { "${::domain}.list": @@ -48,4 +43,6 @@ class nodo::subsystem::apt { package { 'apt-transport-https': ensure => present, } + + class { '::apt::unattended_upgrades': } }