Browse Source

Updated mumble commands

pull/947/head
UltimateByte 9 years ago
committed by GitHub
parent
commit
3891f80b8e
  1. 20
      lgsm/functions/core_getopt.sh

20
lgsm/functions/core_getopt.sh

@ -138,20 +138,24 @@ case "${getopt}" in
command_stop.sh;;
r|restart)
command_restart.sh;;
u|update)
command_update.sh;;
uf|update-functions)
command_update_functions.sh;;
m|monitor)
command_monitor.sh;;
et|test-alert)
command_test_alert.sh;;
dt|details)
command_details.sh;;
b|backup)
command_backup.sh;;
pw|change-password)
command_ts3_server_pass.sh;;
dev|dev-debug)
command_dev_debug.sh;;
console)
command_console.sh;;
d|debug)
command_debug.sh;;
i|install)
command_install.sh;;
dd|depsdetect)
command_dev_detect_deps.sh;;
*)
@ -168,12 +172,14 @@ case "${getopt}" in
echo -e "${blue}start\t${default}st |Start the server."
echo -e "${blue}stop\t${default}sp |Stop the server."
echo -e "${blue}restart\t${default}r |Restart the server."
echo -e "${blue}update\t${default}u |Checks and applies updates from SteamCMD."
echo -e "${blue}update-functions\t${default}uf |Removes all functions so latest can be downloaded."
echo -e "${blue}monitor\t${default}m |Checks that the server is running."
echo -e "${blue}test-alert\t${default}ta |Sends test alert."
echo -e "${blue}details\t${default}dt |Displays useful infomation about the server."
echo -e "${blue}change-password\t${default}pw |Changes TS3 serveradmin password."
echo -e "${blue}backup\t${default}b |Create archive of the server."
echo -e "${blue}console\t${default}c |Console allows you to access the live view of a server."
echo -e "${blue}debug\t${default}d |See the output of the server directly to your terminal."
echo -e "${blue}install\t${default}i |Install the server."
} | column -s $'\t' -t
esac
}
@ -460,4 +466,4 @@ elif [ "${engine}" == "unreal" ]; then
else
fn_getopt_generic
fi
core_exit.sh
core_exit.sh

Loading…
Cancel
Save