Puppet Class: autofs

Defined in:
manifests/init.pp

Overview



3
4
5
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
39
40
41
# File 'manifests/init.pp', line 3

class autofs {
  include autofs::params

  # Ensure that the required package is installed.
  package { $autofs::params::package:
    ensure => installed,
    notify => Service[$autofs::params::service],
  }

  # Ensure that the required service is started.
  service { $autofs::params::service:
    ensure  => running,
    enable  => true,
    require => Package[$autofs::params::package],
  }

  # If the OS we are on has a conf.d file we need to create it
  # and set notify to restart the service when it changes.
  if $autofs::params::confd {
    file { 'autofs.confd':
      ensure  => file,
      path    => $autofs::params::confd,
      require => Package[$autofs::params::package],
      source  => 'puppet:///modules/autofs/autofs.confd',
      notify  => Service[$autofs::params::service],
    }
  }

  # If the OS we are on has a separate dir for the autofs.* files
  # then we need to remove any created in an incorrect location.
  if $autofs::params::master_dir {
    file { '/etc/auto.master': ensure => 'absent' }

    file { '/etc/auto.misc': ensure => 'absent' }
  }

  # Declare a master map file (empty by default).
  autofs::mapfile { 'autofs::master': path => $autofs::params::master, }
}