1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
[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.
# Enable robustirc-bridge@.service with the network name for IRC listening
# mode, e.g. systemctl enable --now robustirc-bridge@robustirc.net.service
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
|