summaryrefslogtreecommitdiff
path: root/manifests/mounts.pp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-01-23 19:13:06 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-02-09 18:05:08 +0100
commit5e24290ae52c6d9029c95fcb1ce0aeb839883528 (patch)
treeb00eee549376919cd8be398754ae71a3619247cd /manifests/mounts.pp
parentAdd ordering for locales on debian. (diff)
downloadprofiles-5e24290ae52c6d9029c95fcb1ce0aeb839883528.tar.gz
profiles-5e24290ae52c6d9029c95fcb1ce0aeb839883528.tar.xz
Move mounts to own profile.
Diffstat (limited to '')
-rw-r--r--manifests/mounts.pp8
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/mounts.pp b/manifests/mounts.pp
new file mode 100644
index 0000000..94696bb
--- /dev/null
+++ b/manifests/mounts.pp
@@ -0,0 +1,8 @@
+class profiles::mounts {
+ systemd_mount { '/usr/net':
+ what => 'elrond:/files',
+ where => '/usr/net',
+ wantedBy => 'remote-fs.target',
+ automount => true,
+ }
+}