Skip to content

Instantly share code, notes, and snippets.

@HiiZun
Created April 5, 2020 17:16
Show Gist options
  • Save HiiZun/6553c572e863eccd4c2ac642889b5e6b to your computer and use it in GitHub Desktop.
Save HiiZun/6553c572e863eccd4c2ac642889b5e6b to your computer and use it in GitHub Desktop.
a verry simple booter to boot up minecraft servers
#!/bin/bash
echo "======================="
echo "bootmc script by HiiZun"
echo "======================="
echo "booting up the bungeecord..."
screen -S Bungeecord /home/bungeecord/run.sh # à modifier !
echo "success !"
echo "booting up the lobby..."
screen -S Lobby /home/lobby/run.sh # à modifier !
echo "success !"
echo "booting up the RushFFA..."
screen -S RushFFA /home/rushffa/run.sh # à modifier !
echo "success !"
echo "booting up the CubeRun..."
screen -S CubeRun /home/cuberun/run.sh # à modifier !
echo "success !"
echo "boot up finished !"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment