summaryrefslogtreecommitdiff
path: root/units/systemd-nspawn@.service.in
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2017-08-09 18:19:00 +0200
committerLennart Poettering <lennart@poettering.net>2017-08-29 16:01:19 +0200
commit3982becc92197b920d86f03c3c52ae085e26ca60 (patch)
treedf76deaa190535e50b7e7f974a194d5bf5305528 /units/systemd-nspawn@.service.in
parent715cbb81eee771dd0544db434d98b3e68ea5c7e9 (diff)
downloadsystemd-3982becc92197b920d86f03c3c52ae085e26ca60.tar.gz
units: include DM devices in DeviceAllow fpor systemd-nspawn@.service
We need it to make LUKS devices work. Fixes: #6525
Diffstat (limited to 'units/systemd-nspawn@.service.in')
-rw-r--r--units/systemd-nspawn@.service.in15
1 files changed, 10 insertions, 5 deletions
diff --git a/units/systemd-nspawn@.service.in b/units/systemd-nspawn@.service.in
index 5e80054a57..9893ae2b36 100644
--- a/units/systemd-nspawn@.service.in
+++ b/units/systemd-nspawn@.service.in
@@ -23,18 +23,23 @@ Slice=machine.slice
Delegate=yes
TasksMax=16384
-## Enforce a strict device policy, similar to the one nspawn configures
-## when it allocates its own scope unit. Make sure to keep these
-## policies in sync if you change them!
+# Enforce a strict device policy, similar to the one nspawn configures when it
+# allocates its own scope unit. Make sure to keep these policies in sync if you
+# change them!
DevicePolicy=closed
DeviceAllow=/dev/net/tun rwm
DeviceAllow=char-pts rw
-# nspawn itself needs access to /dev/loop-control and /dev/loop, to
-# implement the --image= option. Add these here, too.
+# nspawn itself needs access to /dev/loop-control and /dev/loop, to implement
+# the --image= option. Add these here, too.
DeviceAllow=/dev/loop-control rw
DeviceAllow=block-loop rw
DeviceAllow=block-blkext rw
+# nspawn can set up LUKS encrypted loopback files, in which case it needs
+# access to /dev/mapper/control and the block devices /dev/mapper/*.
+DeviceAllow=/dev/mapper/control rw
+DeviceAllow=block-device-mapper rw
+
[Install]
WantedBy=machines.target