diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-04-14 15:51:56 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-04-14 15:51:56 -0300 |
commit | b432165cd092e15bbe920618be9214cf2586a3f8 (patch) | |
tree | 124495a0731c3bcd5a8d09494cc39e6b80951b5f /manifests/subsystem/apt.pp | |
parent | 0618b0aad4d00ef60cd34c377de29435687f06a2 (diff) | |
download | puppet-nodo-b432165cd092e15bbe920618be9214cf2586a3f8.tar.gz puppet-nodo-b432165cd092e15bbe920618be9214cf2586a3f8.tar.bz2 |
Moving '::apt::unattended_upgrades' to the end of apt class
Diffstat (limited to 'manifests/subsystem/apt.pp')
-rw-r--r-- | manifests/subsystem/apt.pp | 7 |
1 files changed, 2 insertions, 5 deletions
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': } } |