summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-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
+}