summaryrefslogtreecommitdiff
path: root/manifests/mounts.pp
blob: e849531d9fedc67e9124b1def35414df67318fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class profiles::mounts {

  file { '/usr/net':
    ensure => directory,
  }

  systemd_mount { '/usr/net':
    what      => 'elrond:/files',
    where     => '/usr/net',
    wantedBy  => 'remote-fs.target',
    automount => true,
    require   => File['/usr/net'],
  }
}