Skip to content

Instantly share code, notes, and snippets.

@steegi
Created July 23, 2016 15:48
Show Gist options
  • Save steegi/75f53a57b686f2cc0925fc563775c3af to your computer and use it in GitHub Desktop.
Save steegi/75f53a57b686f2cc0925fc563775c3af to your computer and use it in GitHub Desktop.
Minecraft systemd (Ubuntu 16.04) configuration file
# /lib/systemd/system/minecraft.service
[Unit]
Description=Minecraft Server
[Service]
Type=forking
WorkingDirectory=/home/minecraft
User=minecraft
Group=minecraft
Restart=always
ExecStart=/home/minecraft/start-script.sh
ExecStop=/home/minecraft/stop-script.sh
ExecStop=/bin/sleep 2
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment