/lib/systemd/system/pyroman.service is in pyroman 0.5.0-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 | #
# Pyroman Firewall
#
[Unit]
Description=Pyroman firewall
DefaultDependencies=no
After=systemd-modules-load.service network-pre.target
Before=network.target
Wants=network-pre.target
[Service]
Type=oneshot
RemainAfterExit=yes
StandardOutput=syslog
EnvironmentFile=/etc/default/pyroman
ExecStartPre=/bin/sh -c '[ "$PYROMAN_ENABLED" = "y" ]'
ExecStart=/usr/sbin/pyroman --init
[Install]
WantedBy=multi-user.target.wants
|