|
|
@ -32,7 +32,7 @@ sleep 1 |
|
|
|
fn_printoknl "Updating ${servername}" |
|
|
|
fn_scriptlog "Updating ${servername}" |
|
|
|
sleep 1 |
|
|
|
cd ${rootdir} |
|
|
|
cd "${rootdir}" |
|
|
|
echo -e "downloading teamspeak3-server_linux-${ts3arch}-${availablebuild}.tar.gz...\c" |
|
|
|
fn_scriptlog "Downloading teamspeak3-server_linux-${ts3arch}-${availablebuild}.tar.gz" |
|
|
|
wget -N --no-check-certificate /dev/null http://dl.4players.de/ts/releases/${ts3_version_number}/teamspeak3-server_linux-${ts3arch}-${ts3_version_number}.tar.gz 2>&1 | grep -F HTTP | cut -c45-| uniq |
|
|
@ -55,7 +55,7 @@ else |
|
|
|
fi |
|
|
|
echo -e "copying to ${filesdir}...\c" |
|
|
|
fn_scriptlog "Copying to ${filesdir}" |
|
|
|
cp -R ${rootdir}/teamspeak3-server_linux-${ts3arch}/* "${filesdir}" 2> "${scriptlogdir}/.${servicename}-cp-error.tmp" |
|
|
|
cp -R "${rootdir}/teamspeak3-server_linux-${ts3arch}/*" "${filesdir}" 2> "${scriptlogdir}/.${servicename}-cp-error.tmp" |
|
|
|
local status=$? |
|
|
|
if [ ${status} -eq 0 ]; then |
|
|
|
echo "OK" |
|
|
@ -70,7 +70,7 @@ else |
|
|
|
exit |
|
|
|
fi |
|
|
|
rm -f teamspeak3-server_linux-${ts3arch}-${availablebuild}.tar.gz |
|
|
|
rm -rf ${rootdir}/teamspeak3-server_linux-${ts3arch} |
|
|
|
rm -rf "${rootdir}/teamspeak3-server_linux-${ts3arch}" |
|
|
|
} |
|
|
|
|
|
|
|
if [ "${gamename}" == "Teamspeak 3" ]; then |
|
|
|