dev/provisioning/modules/yum/manifests/params.pp
changeset 28 b0b56e0f8c7f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dev/provisioning/modules/yum/manifests/params.pp	Fri Jan 15 15:35:00 2016 +0100
@@ -0,0 +1,17 @@
+class yum::params {
+  case $::osfamily {
+    redhat: {
+      $keepcache = false
+      $debuglevel = 2
+      $exactarch = true
+      $obsoletes = true
+      $gpgcheck = true
+      $installonly_limit = 5
+      $keep_kernel_devel = false
+    }
+
+    default: {
+      fail("Unsupported OS family: ${::osfamily}")
+    }
+  }
+}