aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/mount.pp
blob: 3fcee58315b222bfad20861428fb4f76ad3aba81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class mount {
  class { autofs: }

  file { '/etc/auto.removable':
    source => [ "puppet:///modules/site_nodo/etc/${::fqdn}/auto.removable",
                "puppet:///modules/site_nodo/etc/${::domain}/auto.removable",
                "puppet:///modules/site_nodo/etc/auto.removable",
                "puppet:///modules/nodo/etc/auto.removable.${::operatingssystem}",
                "puppet:///modules/nodo/etc/auto.removable" ],
    notify => Service[autofs],
    owner  => root,
    group  => root,
    mode   => 0644;
  }
}