24 lines
582 B
SYSTEMD
24 lines
582 B
SYSTEMD
|
[Unit]
|
||
|
Description=ergo
|
||
|
After=network.target
|
||
|
# If you are using MySQL for history storage, comment out the above line
|
||
|
# and uncomment these two instead (you must independently install and configure
|
||
|
# MySQL for your system):
|
||
|
# Wants=mysql.service
|
||
|
# After=network.target mysql.service
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
User=ergo
|
||
|
Group=ergo
|
||
|
WorkingDirectory=/etc/ergo
|
||
|
ExecStart=/usr/bin/ergo run --conf /etc/ergo/ircd.yaml
|
||
|
ExecReload=/bin/kill -HUP $MAINPID
|
||
|
Restart=on-failure
|
||
|
LimitNOFILE=1048576
|
||
|
# Uncomment this for a hidden service:
|
||
|
# PrivateNetwork=true
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|