]> gitweb.fluxo.info Git - puppet-apt.git/commitdiff
New class: apt::dist_upgrade.
authorintrigeri <intrigeri@boum.org>
Thu, 16 Dec 2010 12:02:28 +0000 (13:02 +0100)
committerintrigeri <intrigeri@boum.org>
Thu, 16 Dec 2010 12:02:28 +0000 (13:02 +0100)
README
manifests/dist_upgrade.pp [new file with mode: 0644]

diff --git a/README b/README
index 99c6354a9d4e7845660adb2ef5467f3e78b7598e..8503e7348554c3d5683849e273ab78b57b384349 100644 (file)
--- a/README
+++ b/README
@@ -204,6 +204,20 @@ emails when upgrades are performed.
 See apt::cron::download above if you need to run cron-apt more often
 than once a day.
 
+apt::dist_upgrade
+-----------------
+
+This class provides the Exec['apt_dist-upgrade'] resource that
+dist-upgrade's the system.
+
+This exec is set as refreshonly so including this class does not
+trigger any action per-se: other resources may notify it, other
+classes may inherit from this one and add to its subscription list
+using the plusignment ('+>') operator.
+
+When this class is included the APT indexes are updated on every
+Puppet run due to the author's lack of Puppet wizardry.
+
 apt::dselect
 ------------
 
diff --git a/manifests/dist_upgrade.pp b/manifests/dist_upgrade.pp
new file mode 100644 (file)
index 0000000..9e26769
--- /dev/null
@@ -0,0 +1,11 @@
+class apt::dist_upgrade {
+
+  include apt::update
+
+  exec { 'apt_dist-upgrade':
+    command     => "/usr/bin/apt-get -q -y -o 'DPkg::Options::=--force-confold' dist-upgrade",
+    refreshonly => true,
+    require     => Exec['apt_updated'],
+  }
+
+}