mirror of
https://github.com/kaboomserver/framework.git
synced 2024-11-28 10:05:39 -05:00
13 lines
399 B
Bash
Executable file
13 lines
399 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# This is the core script used when booting up the server
|
|
# It asumes that the "framework" folder is located in the home directory
|
|
|
|
# Run scripts for starting the Minecraft server and schematic
|
|
# checker in the background
|
|
|
|
while true; do
|
|
dtach -n kaboom ~/framework/script/server.sh > /dev/null 2>&1
|
|
dtach -n schematics ~/framework/script/schematics.sh > /dev/null 2>&1
|
|
sleep 5
|
|
done &
|