dev/provisioning/modules/yum/manifests/params.pp
author Chloe Laisne <chloe.laisne@gmail.com>
Sat, 09 Jul 2016 00:59:32 +0200
changeset 236 ac6928e86d14
parent 28 b0b56e0f8c7f
permissions -rw-r--r--
Adapt theme query limit and offset and sorting order in fixtures

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