You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ergo.service 575B

12345678910111213141516171819202122
  1. [Unit]
  2. Description=ergo
  3. After=network.target
  4. # If you are using MySQL for history storage, comment out the above line
  5. # and uncomment these two instead (you must independently install and configure
  6. # MySQL for your system):
  7. # Wants=mysql.service
  8. # After=network.target mysql.service
  9. [Service]
  10. Type=simple
  11. User=ergo
  12. WorkingDirectory=/home/ergo
  13. ExecStart=/home/ergo/ergo run --conf /home/ergo/ircd.yaml
  14. ExecReload=/bin/kill -HUP $MAINPID
  15. Restart=on-failure
  16. LimitNOFILE=1048576
  17. # Uncomment this for a hidden service:
  18. # PrivateNetwork=true
  19. [Install]
  20. WantedBy=multi-user.target