/lib/systemd/system/mandos.service is in mandos 1.6.9-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | [Unit]
Description=Server of encrypted passwords to Mandos clients
Documentation=man:intro(8mandos) man:mandos(8)
[Service]
Type=simple
## Type=dbus is not appropriate, because Mandos also needs to announce
## its ZeroConf service and be reachable on the network.
#Type=dbus
#BusName=se.recompile.Mandos
# If you add --no-dbus, also comment out BusName above, and vice versa
ExecStart=/usr/sbin/mandos --foreground
Restart=always
KillMode=process
## Using socket activation won't work either, because systemd always
## does bind() on the socket, and also won't announce the ZeroConf
## service.
#ExecStart=/usr/sbin/mandos --foreground --socket=0
#StandardInput=socket
[Install]
WantedBy=multi-user.target
|