]> git.proxmox.com Git - systemd.git/blob - units/systemd-machined.service.in
Fix boot-and-services autopkgtest
[systemd.git] / units / systemd-machined.service.in
1 # SPDX-License-Identifier: LGPL-2.1-or-later
2 #
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]
11 Description=Virtual Machine and Container Registration Service
12 Documentation=man:systemd-machined.service(8)
13 Documentation=man:org.freedesktop.machine1(5)
14
15 Wants=machine.slice
16 After=machine.slice
17 RequiresMountsFor=/var/lib/machines
18
19 [Service]
20 BusName=org.freedesktop.machine1
21 CapabilityBoundingSet=CAP_KILL CAP_SYS_PTRACE CAP_SYS_ADMIN CAP_SETGID CAP_SYS_CHROOT CAP_DAC_READ_SEARCH CAP_DAC_OVERRIDE CAP_CHOWN CAP_FOWNER CAP_FSETID CAP_MKNOD CAP_LINUX_IMMUTABLE
22 ExecStart={{ROOTLIBEXECDIR}}/systemd-machined
23 IPAddressDeny=any
24 LockPersonality=yes
25 MemoryDenyWriteExecute=yes
26 NoNewPrivileges=yes
27 ProtectHostname=yes
28 RestrictAddressFamilies=AF_UNIX AF_NETLINK AF_INET AF_INET6
29 RestrictRealtime=yes
30 SystemCallArchitectures=native
31 SystemCallErrorNumber=EPERM
32 SystemCallFilter=@system-service @mount
33 {{SERVICE_WATCHDOG}}
34
35 # Note that machined cannot be placed in a mount namespace, since it
36 # needs access to the host's mount namespace in order to implement the
37 # "machinectl bind" operation.