firstboot: fix crash when hostname question is skipped
[systemd.io.git] / units / systemd-nspawn@.service.in
blob0dec0e04785424da0ffb418154ff5082beee2789
1 #  SPDX-License-Identifier: LGPL-2.1-or-later
3 #  This file is part of systemd.
5 #  systemd is free software; you can redistribute it and/or modify it
6 #  under the terms of the GNU Lesser General Public License as published by
7 #  the Free Software Foundation; either version 2.1 of the License, or
8 #  (at your option) any later version.
10 [Unit]
11 Description=Container %i
12 Documentation=man:systemd-nspawn(1)
13 Wants=modprobe@tun.service modprobe@loop.service modprobe@dm_mod.service
14 PartOf=machines.target
15 Before=machines.target
16 After=network.target modprobe@tun.service modprobe@loop.service modprobe@dm_mod.service
17 RequiresMountsFor=/var/lib/machines/%i
19 [Service]
20 # Make sure the DeviceAllow= lines below can properly resolve the 'block-loop' expression (and others)
21 ExecStart=systemd-nspawn --quiet --keep-unit --boot --link-journal=try-guest --network-veth -U --settings=override --machine=%i
22 KillMode=mixed
23 Type=notify
24 RestartForceExitStatus=133
25 SuccessExitStatus=133
26 Slice=machine.slice
27 Delegate=yes
28 DelegateSubgroup=supervisor
29 CoredumpReceive=yes
30 TasksMax=16384
31 {{SERVICE_WATCHDOG}}
33 {# Enforce a strict device policy, similar to the one nspawn configures (in
34  # nspawn-register.c:append_machine_properties()) when it allocates its own
35  # scope unit. Make sure to keep these policies in sync if you change them! #}
36 DevicePolicy=closed
37 DeviceAllow=/dev/net/tun rwm
38 DeviceAllow=char-pts rw
39 DeviceAllow=/dev/fuse rwm
41 # nspawn itself needs access to /dev/loop-control and /dev/loop, to implement
42 # the --image= option. Add these here, too.
43 DeviceAllow=/dev/loop-control rw
44 DeviceAllow=block-loop rw
45 DeviceAllow=block-blkext rw
47 # nspawn can set up LUKS encrypted loopback files, in which case it needs
48 # access to /dev/mapper/control and the block devices /dev/mapper/*.
49 DeviceAllow=/dev/mapper/control rw
50 DeviceAllow=block-device-mapper rw
52 [Install]
53 WantedBy=machines.target