34 lines
742 B
Plaintext
34 lines
742 B
Plaintext
|
#!/bin/bash
|
|||
|
|
|||
|
# ×=================================×
|
|||
|
# | bukkit-start by Elias Schriefer |
|
|||
|
# ×=================================×
|
|||
|
|
|||
|
if [ "$1" = "-h" ]
|
|||
|
then
|
|||
|
echo "bukkit-start [option]"
|
|||
|
echo
|
|||
|
echo "Options:"
|
|||
|
echo " -h Show help"
|
|||
|
exit 0
|
|||
|
fi
|
|||
|
|
|||
|
# Get the bukkit server status: is it running or stopped?
|
|||
|
# We don't need echo, but thx anyways...
|
|||
|
bukkit-status > /dev/null
|
|||
|
if [ $? -gt 0 ]
|
|||
|
then
|
|||
|
# If the server is stopped, go into the server directory, ...
|
|||
|
cd /media/games/bukkit/
|
|||
|
# start the screen with Socket name & title "bukkit"
|
|||
|
# and run the start script
|
|||
|
sudo screen -dmS bukkit -t bukkit ./Start.sh
|
|||
|
# Now gimme my suxesvul eksit koud...
|
|||
|
true
|
|||
|
else
|
|||
|
# or my unsuxesvul eksit koud...
|
|||
|
false
|
|||
|
fi
|
|||
|
# and eksit wif that eksit koud
|
|||
|
exit $?
|