Browse Source

added ./ to code with selfname

after a change to selfname var needed to add ./ before some of the
variables.
pull/292/head
Daniel Gibbs 10 years ago
parent
commit
7dd912522c
  1. 2
      functions/fn_install_complete
  2. 6
      functions/fn_install_kffix
  3. 6
      functions/fn_install_rofix
  4. 6
      functions/fn_install_ut2k4fix

2
functions/fn_install_complete

@ -8,5 +8,5 @@ echo "================================="
echo "Install Complete!" echo "Install Complete!"
echo "" echo ""
echo "To start server type:" echo "To start server type:"
echo "${selfname} start" echo "./${selfname} start"
echo "" echo ""

6
functions/fn_install_kffix

@ -20,8 +20,8 @@ sleep 1
echo "forcing server restart..." echo "forcing server restart..."
sleep 1 sleep 1
cd "${rootdir}" cd "${rootdir}"
${selfname} start ./${selfname} start
sleep 5 sleep 5
${selfname} restart ./${selfname} restart
sleep 5 sleep 5
${selfname} stop ./${selfname} stop

6
functions/fn_install_rofix

@ -20,8 +20,8 @@ sleep 1
echo "forcing server restart..." echo "forcing server restart..."
sleep 1 sleep 1
cd "${rootdir}" cd "${rootdir}"
${selfname} start ./${selfname} start
sleep 5 sleep 5
${selfname} restart ./${selfname} restart
sleep 5 sleep 5
${selfname} stop ./${selfname} stop

6
functions/fn_install_ut2k4fix

@ -25,8 +25,8 @@ sleep 0.5
echo -en "\n" echo -en "\n"
sleep 0.5 sleep 0.5
cd "${rootdir}" cd "${rootdir}"
${selfname} start ./${selfname} start
sleep 5 sleep 5
${selfname} restart ./${selfname} restart
sleep 5 sleep 5
${selfname} stop ./${selfname} stop
Loading…
Cancel
Save