/lib/systemd/system/booth.service is in booth 1.0-2.
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 | # systemd service for managing all booth instances on the system. This
# service is actually a systemd target, but we are using a service
# since targets cannot be reloaded.
[Unit]
Description=Booth Ticketmanager
After=network.target
[Service]
Type=oneshot
ExecStart=/bin/true
ExecReload=/bin/true
RemainAfterExit=on
[Install]
WantedBy=multi-user.target
|