From c806a25cbb7d42849d54e9d614d63b588f1da7bc Mon Sep 17 00:00:00 2001 From: Scarsz Date: Thu, 18 Jun 2015 15:43:48 -0700 Subject: [PATCH] Encapsulate service name in quotations for stop file as well --- functions/fn_stop | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/fn_stop b/functions/fn_stop index 3d1ebab90..a3fc2d485 100644 --- a/functions/fn_stop +++ b/functions/fn_stop @@ -2,7 +2,7 @@ # LGSM fn_stop function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 260515 +# Version: 180615 # Description: Stops the server. @@ -113,7 +113,7 @@ if [ "${gamename}" == "7 Days To Die" ] ; then fn_printok "${servername} is already stopped using graceful shutdown" fn_scriptlog "${servername} is already stopped using graceful shutdown" else - tmux kill-session -t ${servicename} + tmux kill-session -t "${servicename}" fn_printok "${servername}" fn_scriptlog "Stopped ${servername}" fi @@ -124,7 +124,7 @@ else fn_printfail "${servername} is already stopped" fn_scriptlog "${servername} is already stopped" else - tmux kill-session -t ${servicename} + tmux kill-session -t "${servicename}" fn_printok "${servername}" fn_scriptlog "Stopped ${servername}" fi