Puppet Class: sys::parted::params

Inherited by:
sys::parted
Defined in:
manifests/parted/params.pp

Overview

Class: sys::parted::params

Platform-dependent parameters for installing GNU parted.



5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'manifests/parted/params.pp', line 5

class sys::parted::params {
  case $::osfamily {
    debian: {
      $package = 'parted'
    }
    redhat: {
      $package = 'parted'
    }
    default: {
      fail("Do not know how to install parted on ${::osfamily}.")
    }
  }
}