]> review.fuel-infra Code Review - puppet-modules/puppetlabs-apt.git/commitdiff
Added two params for apt class
authorDan Bode <dan@puppetlabs.com>
Mon, 30 May 2011 01:43:01 +0000 (18:43 -0700)
committerDan Bode <dan@puppetlabs.com>
Mon, 30 May 2011 01:43:01 +0000 (18:43 -0700)
both of these params facilitate options that
ease the management of apt repos in dev
environments

1. disable_keys - allows repos without properly
signed keys
2. always_apt_update - refreshes via apt update
every time that puppet runs.

manifests/init.pp

index 677523bcf267c0fb8a9d7725f877e8a313a3f1aa..c4df481dd35d2377afa5c340362307ead0cb1efc 100644 (file)
@@ -1,8 +1,30 @@
-# apt.pp
+# Class: apt
+#
+# This module manages the initial configuration of apt.
+#
+# Parameters:
+#   Both of the parameters listed here are not required in general and were
+#     added for use cases related to development environments.
+#   disable_keys - disables the requirement for all packages to be signed
+#   always_apt_update - rather apt should be updated on every run (intended
+#     for development environments where package updates are frequent
+# Actions:
+#
+# Requires:
+#
+# Sample Usage:
+#  class { 'apt': }
+class apt(
+  $disable_keys = false,
+  $always_apt_update = false
+) {
 
-class apt {
        $root = '/etc/apt'
        $provider = '/usr/bin/apt-get'
+  $refresh_only_apt_update = $always_apt_update? {
+    true => false,
+    false => true
+  }
 
   package { "python-software-properties": }
 
@@ -21,9 +43,15 @@ class apt {
                group => root,
        }
 
-       exec { "apt_update":
-               command => "${provider} update",
-               subscribe => [ File["sources.list"], File["sources.list.d"] ],
-               refreshonly => true,
-       }
+  exec { "apt_update":
+    command => "${apt::params::provider} update",
+    subscribe => [ File["sources.list"], File["sources.list.d"] ],
+    refreshonly => $refresh_only_apt_update,
+  }
+  if($disable_keys) {
+    exec { 'make-apt-insecure':
+      command => '/bin/echo "APT::Get::AllowUnauthenticated 1;" >> /etc/apt/apt.conf.d/99unauth',
+      creates => '/etc/apt/apt.conf.d/99unauth'
+    }
+  }
 }