summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/mounts.pp6
1 files changed, 6 insertions, 0 deletions
diff --git a/manifests/mounts.pp b/manifests/mounts.pp
index 94696bb..e849531 100644
--- a/manifests/mounts.pp
+++ b/manifests/mounts.pp
@@ -1,8 +1,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'],
}
}