lgsm local mirror
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.
 
 

28 lines
719 B

#!/bin/bash
# LGSM fn_getquery function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 231214
fn_dlgsquery(){
cd "${rootdir}"
echo -e "downloading lgsm-default.cfg...\c"
wget --no-check-certificate /dev/null "http://danielgibbs.co.uk/dl/gsquery.py" 2>&1 | grep -F "HTTP" | grep -v "Moved Permanently" | cut -c45-
chmod +x gsquery.py
}
echo ""
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]* ) fn_dlgsquery;break;;
[Nn]* ) echo ""; echo "Not installing GameServerQuery.";break;;
* ) echo "Please answer yes or no.";;
esac
done
else
fn_dlgsquery
fi