dev/provisioning/modules/yum/manifests/params.pp
author ymh <ymh.work@gmail.com>
Mon, 12 Jun 2017 22:33:23 +0200
changeset 539 bb12d638cb9f
parent 28 b0b56e0f8c7f
permissions -rw-r--r--
improve documentation on proxy

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}")
    }
  }
}