]>
Commit | Line | Data |
---|---|---|
a7df2d1e ZJS |
1 | # SPDX-License-Identifier: LGPL-2.1+ |
2 | # | |
05947bef LP |
3 | # This file is part of systemd. |
4 | # | |
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. | |
9 | ||
10 | [Unit] | |
7a8c9e44 | 11 | Description=Container %i |
05947bef | 12 | Documentation=man:systemd-nspawn(1) |
6a140df0 LP |
13 | PartOf=machines.target |
14 | Before=machines.target | |
dec71806 | 15 | After=network.target systemd-resolved.service |
be5bd2ec | 16 | RequiresMountsFor=/var/lib/machines |
05947bef LP |
17 | |
18 | [Service] | |
af88764f | 19 | ExecStart=@bindir@/systemd-nspawn --quiet --keep-unit --boot --link-journal=try-guest --network-veth -U --settings=override --machine=%i |
d8e40d62 | 20 | KillMode=mixed |
05947bef | 21 | Type=notify |
ce38dbc8 LP |
22 | RestartForceExitStatus=133 |
23 | SuccessExitStatus=133 | |
8fd010bb | 24 | WatchdogSec=3min |
45d383a3 | 25 | Slice=machine.slice |
a931ad47 | 26 | Delegate=yes |
8d36b53a | 27 | TasksMax=16384 |
05947bef | 28 | |
3982becc LP |
29 | # Enforce a strict device policy, similar to the one nspawn configures when it |
30 | # allocates its own scope unit. Make sure to keep these policies in sync if you | |
31 | # change them! | |
54cd6556 | 32 | DevicePolicy=closed |
773ce3d8 | 33 | DeviceAllow=/dev/net/tun rwm |
773ce3d8 LP |
34 | DeviceAllow=char-pts rw |
35 | ||
3982becc LP |
36 | # nspawn itself needs access to /dev/loop-control and /dev/loop, to implement |
37 | # the --image= option. Add these here, too. | |
988a4796 LP |
38 | DeviceAllow=/dev/loop-control rw |
39 | DeviceAllow=block-loop rw | |
a2c90f05 | 40 | DeviceAllow=block-blkext rw |
988a4796 | 41 | |
3982becc LP |
42 | # nspawn can set up LUKS encrypted loopback files, in which case it needs |
43 | # access to /dev/mapper/control and the block devices /dev/mapper/*. | |
44 | DeviceAllow=/dev/mapper/control rw | |
45 | DeviceAllow=block-device-mapper rw | |
46 | ||
05947bef | 47 | [Install] |
6a140df0 | 48 | WantedBy=machines.target |