dev/provisioning/modules/yum/manifests/params.pp
author nowmad@23.1.168.192.in-addr.arpa
Fri, 22 Jan 2016 11:23:23 +0100
changeset 97 32c0f831de45
parent 28 b0b56e0f8c7f
permissions -rw-r--r--
add controller for discours

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