From: intrigeri Date: Wed, 6 Oct 2010 12:06:50 +0000 (+0200) Subject: Add cron-apt support. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=208e60b86485fca9bd7e7c5b65dd11d61ec14107;p=puppet-apt.git Add cron-apt support. --- diff --git a/README b/README index 133ad22..7b961b6 100644 --- a/README +++ b/README @@ -110,9 +110,22 @@ the Debian official backports and the Debian Volatile archive. Classes ======= -This module contains only the apt class, which sets up all described -functionality. +apt +--- +The apt class sets up all documented functionality but cron-apt. + +apt::cron::download +------------------- + +This class sets up cron-apt so that it downloads upgradable packages, +does not actually do any upgrade and email when the output changes. + +apt::cron::dist-upgrade +----------------------- + +This class sets up cron-apt so that it dist-upgrades the system and +email when upgrades are performed. Resources ========= diff --git a/manifests/cron/base.pp b/manifests/cron/base.pp new file mode 100644 index 0000000..2cfbefb --- /dev/null +++ b/manifests/cron/base.pp @@ -0,0 +1,3 @@ +class apt::cron::base { + package { cron-apt: ensure => installed } +} diff --git a/manifests/cron/dist-upgrade.pp b/manifests/cron/dist-upgrade.pp new file mode 100644 index 0000000..38c1711 --- /dev/null +++ b/manifests/cron/dist-upgrade.pp @@ -0,0 +1,21 @@ +class apt::cron::dist-upgrade inherits cron-apt::base { + + $action = "autoclean -y +dist-upgrade -y -o APT::Get::Show-Upgraded=true +" + + file { "/etc/cron-apt/action.d/3-download": + ensure => absent, + } + + config_file { "/etc/cron-apt/action.d/4-dist-upgrade": + content => $action, + require => Package[cron-apt] + } + + config_file { "/etc/cron-apt/config.d/MAILON": + content => "MAILON=upgrade\n", + require => Package[cron-apt] + } + +} diff --git a/manifests/cron/download.pp b/manifests/cron/download.pp new file mode 100644 index 0000000..58476b7 --- /dev/null +++ b/manifests/cron/download.pp @@ -0,0 +1,21 @@ +class apt::cron::download inherits cron-apt::base { + + $action = "autoclean -y +dist-upgrade -d -y -o APT::Get::Show-Upgraded=true +" + + file { "/etc/cron-apt/action.d/4-dist-upgrade": + ensure => absent, + } + + config_file { "/etc/cron-apt/action.d/3-download": + content => $action, + require => Package[cron-apt] + } + + config_file { "/etc/cron-apt/config.d/MAILON": + content => "MAILON=changes\n", + require => Package[cron-apt] + } + +}