Puppet Class: mdadm::params
- Inherited by:
 - 
      
      mdadm
 
- Defined in:
 - manifests/params.pp
 
Overview
Class mdadm::params
This class is meant to be called from mdadm It sets variables according to platform
        6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38  | 
      
        # File 'manifests/params.pp', line 6
class mdadm::params {
  case $::osfamily {
    'Debian': {
      $package_name = 'mdadm'
      $package_ensure = 'present'
      # Under mdadm 3.3.1+ with systemd, the service is called mdmonitor
      # This means Debian jessie (mdadm 3.3.2)/stretch (mdadm 3.4) and Ubuntu
      # bionic (mdadm 4.0) for instance use 'mdmonitor' as the service name,
      # but Ubuntu xenial (mdadm 3.3) and below still use 'mdadm'
      if ($operatingsystem == 'Ubuntu' and versioncmp($operatingsystemrelease, '16.10') < 0) or ($operatingsystem == 'Debian' and versioncmp($operatingsystemrelease, '8') < 0) {
        $service_name = 'mdadm'
      } else {
        $service_name = 'mdmonitor'
      }
      $service_ensure = 'running'
      $service_manage = true
      # Older mdadm packages don't have a service status
      if versioncmp($operatingsystemrelease, '12.04') < 0 {
        $service_hasstatus = false
      } else {
        $service_hasstatus = true
      }
      $include_cron = true
    }
    default: {
      fail("${::operatingsystem} not supported")
    }
  }
}
       |