/lib/systemd/system/robustirc-bridge.service is in robustirc-bridge 1.4-3.
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=RobustIRC bridge
Documentation=man:robustirc-bridge(1)
Documentation=http://robustirc.net/
[Service]
Restart=on-failure
# By default, the RobustIRC bridge is started in SOCKS proxy mode only.
# Override ExecStart with the following for exposing an IRC port (for clients
# without SOCKS proxy support, such as irssi), bridging to robustirc.net:
# ExecStart=/usr/bin/robustirc-bridge -network=robustirc.net
ExecStart=/usr/bin/robustirc-bridge -socks=localhost:1080 -listen=
# The bridge only needs network access and is entirely stateless. Therefore,
# restrict access to the system as far as possible.
User=nobody
PrivateDevices=true
ProtectSystem=true
ProtectHome=true
PrivateTmp=true
[Install]
WantedBy=multi-user.target
|