Puppet Class: fstab::variables

Defined in:
manifests/variables.pp

Overview



3
4
5
6
7
8
9
10
11
12
13
# File 'manifests/variables.pp', line 3

class fstab::variables {
  $fstab_file = $::osfamily ? {
    'RedHat'    => '/etc/fstab',
    'Debian'    => '/etc/fstab',
    'Suse'      => '/etc/fstab',
    'Solaris'   => '/etc/fstab',
    'ArchLinux' => '/etc/fstab',
    'Mandrake'  => '/etc/fstab',
    default     => '/dev/null',
  }
}