gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
698 B
24 lines
698 B
#!/bin/bash
|
|
# LGSM fn_getquery function
|
|
# Author: Daniel Gibbs
|
|
# Website: http://danielgibbs.co.uk
|
|
# Version: 011214
|
|
|
|
echo "GameServerQuery"
|
|
echo "============================"
|
|
if [ -z ${autoinstall} ]; then
|
|
while true; do
|
|
read -p "Do you want to install GameServerQuery? [y/N]" yn
|
|
case $yn in
|
|
[Yy]* ) echo ""; cd "${rootdir}"; wget --no-check-certificate -nv -N "http://danielgibbs.co.uk/dl/gsquery.py"; chmod +x gsquery.py; break;;
|
|
[Nn]* ) echo ""; echo "Not installing GameServerQuery.";break;;
|
|
* ) echo "Please answer yes or no.";;
|
|
esac
|
|
done
|
|
else
|
|
echo ""
|
|
cd "${rootdir}"
|
|
wget --no-check-certificate -nv -N "http://danielgibbs.co.uk/dl/gsquery.py"
|
|
chmod +x gsquery.py
|
|
fi
|
|
echo ""
|