2013-04-29 21:11:37 -03:00
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
[Unit]
2014-12-29 12:38:26 +01:00
Description = Container %I
2013-04-29 21:11:37 -03:00
Documentation = man:systemd-nspawn(1)
2014-12-29 12:38:26 +01:00
PartOf = machines.target
Before = machines.target
2015-05-11 22:08:28 +02:00
After = network.target
2013-04-29 21:11:37 -03:00
[Service]
2015-09-06 01:32:27 +02:00
ExecStart = @bindir@/systemd-nspawn --quiet --keep-unit --boot --link-journal=try-guest --network-veth --settings=override --machine=%I
2014-05-29 01:17:25 +10:00
KillMode = mixed
2013-04-29 21:11:37 -03:00
Type = notify
2014-07-03 12:50:11 +02:00
RestartForceExitStatus = 133
SuccessExitStatus = 133
2015-05-19 19:47:52 +02:00
Slice = machine.slice
2014-11-05 17:57:23 +01:00
Delegate = yes
2013-04-29 21:11:37 -03:00
2015-04-28 20:46:03 +02:00
# 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 = strict
DeviceAllow = /dev/null rwm
DeviceAllow = /dev/zero rwm
DeviceAllow = /dev/full rwm
DeviceAllow = /dev/random rwm
DeviceAllow = /dev/urandom rwm
DeviceAllow = /dev/tty rwm
DeviceAllow = /dev/net/tun rwm
DeviceAllow = /dev/pts/ptmx rw
DeviceAllow = char-pts rw
2015-10-03 11:23:52 +02:00
# 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
2015-10-22 00:39:57 +02:00
DeviceAllow = block-blkext rw
2015-10-03 11:23:52 +02:00
2013-04-29 21:11:37 -03:00
[Install]
2014-12-29 12:38:26 +01:00
WantedBy = machines.target