summaryrefslogtreecommitdiff
path: root/manifests/nspawn_master.pp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-12-31 17:37:43 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-12-31 17:37:43 +0100
commitbae22c4cd7a332b5c352feb18fac0fcc6b794ad7 (patch)
tree00f6d08c07b6a78bc6726cff5ada9b86a71ecb7a /manifests/nspawn_master.pp
parentReworte syncthing. (diff)
downloadprofiles-bae22c4cd7a332b5c352feb18fac0fcc6b794ad7.tar.gz
profiles-bae22c4cd7a332b5c352feb18fac0fcc6b794ad7.tar.xz
Add nspawn_master.
Diffstat (limited to 'manifests/nspawn_master.pp')
-rw-r--r--manifests/nspawn_master.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/nspawn_master.pp b/manifests/nspawn_master.pp
new file mode 100644
index 0000000..97db8bd
--- /dev/null
+++ b/manifests/nspawn_master.pp
@@ -0,0 +1,10 @@
+# Various setup for machines which are expected to "host" other
+# machines through systemd-nspawned.
+class profiles::nspawn_master {
+ file { '/var/lib/machines':
+ ensure => directory,
+ mode => 'o=rwx,g=x',
+ }
+
+ # TODO possibly include my helper script from gandalf:code/machines
+}