Last active
November 11, 2017 22:30
-
-
Save shahrilnet/060cb4d465c2f83bd45061769997daa2 to your computer and use it in GitHub Desktop.
Systemd unit service for DOMJudge's judgehost
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ sudo systemctl enable judgehost | |
| $ sudo systemctl enable judgehost_cgroups | |
| $ sudo systemctl start judgehost | |
| $ sudo systemctl start judgehost_cgroups | |
| $ reboot |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=DOMJudge's judgehost service | |
| After=mysql.service | |
| [Service] | |
| ExecStart=/home/shahril/domjudge/judgehost/bin/judgedaemon | |
| KillMode=process | |
| Restart=on-failure | |
| RestartPreventExitStatus=255 | |
| Type=forking | |
| [Install] | |
| WantedBy=default.target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=DOMJudge's judgehost cgroup creation service | |
| After=mysql.service | |
| [Service] | |
| ExecStart=/home/shahril/domjudge/judgehost/bin/create_cgroups | |
| KillMode=process | |
| Restart=on-failure | |
| RestartPreventExitStatus=255 | |
| Type=forking | |
| [Install] | |
| WantedBy=default.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment