From 7dd912522c3c517092cca83a397d3331a6eb91af Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 8 Feb 2015 14:46:01 +0000 Subject: [PATCH] added ./ to code with selfname after a change to selfname var needed to add ./ before some of the variables. --- functions/fn_install_complete | 2 +- functions/fn_install_kffix | 6 +++--- functions/fn_install_rofix | 6 +++--- functions/fn_install_ut2k4fix | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/functions/fn_install_complete b/functions/fn_install_complete index b6bc3ffac..519af673a 100644 --- a/functions/fn_install_complete +++ b/functions/fn_install_complete @@ -8,5 +8,5 @@ echo "=================================" echo "Install Complete!" echo "" echo "To start server type:" -echo "${selfname} start" +echo "./${selfname} start" echo "" \ No newline at end of file diff --git a/functions/fn_install_kffix b/functions/fn_install_kffix index 76a171731..e9676fb6a 100644 --- a/functions/fn_install_kffix +++ b/functions/fn_install_kffix @@ -20,8 +20,8 @@ sleep 1 echo "forcing server restart..." sleep 1 cd "${rootdir}" -${selfname} start +./${selfname} start sleep 5 -${selfname} restart +./${selfname} restart sleep 5 -${selfname} stop \ No newline at end of file +./${selfname} stop \ No newline at end of file diff --git a/functions/fn_install_rofix b/functions/fn_install_rofix index 0ef40ed96..7bd18cde1 100644 --- a/functions/fn_install_rofix +++ b/functions/fn_install_rofix @@ -20,8 +20,8 @@ sleep 1 echo "forcing server restart..." sleep 1 cd "${rootdir}" -${selfname} start +./${selfname} start sleep 5 -${selfname} restart +./${selfname} restart sleep 5 -${selfname} stop \ No newline at end of file +./${selfname} stop \ No newline at end of file diff --git a/functions/fn_install_ut2k4fix b/functions/fn_install_ut2k4fix index 4e65f0b3e..8b2e10f24 100644 --- a/functions/fn_install_ut2k4fix +++ b/functions/fn_install_ut2k4fix @@ -25,8 +25,8 @@ sleep 0.5 echo -en "\n" sleep 0.5 cd "${rootdir}" -${selfname} start +./${selfname} start sleep 5 -${selfname} restart +./${selfname} restart sleep 5 -${selfname} stop \ No newline at end of file +./${selfname} stop \ No newline at end of file