/lib/systemd/system/arpwatch.service is in arpwatch 2.1a15-6.
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 | # The arpwatch service file is organized similar as openvpn.service and mostly
# copied from it
#
# This service is actually a systemd target,
# but we are using a service since targets cannot be reloaded.
#
# start/restart/reload on this unit will be propergated to the services for
# individual interfaces (instanciated using the arpwatch@.service template)
[Unit]
Description=arpwatch service
Documentation=man:arpwatch(8)
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/bin/true
WorkingDirectory=/var/lib/arpwatch
[Install]
WantedBy=multi-user.target
|