Просмотр исходного кода

moved ip insert next to monitor

Daniel Gibbs 8 лет назад
Родитель
Сommit
3328c0a980
1 измененных файлов с 9 добавлено и 9 удалено
  1. 9 9
      tests/tests_jc2server.sh

+ 9 - 9
tests/tests_jc2server.sh

@@ -528,15 +528,6 @@ echo "Command: ./jc2server auto-install"
 (fn_autoinstall)
 fn_test_result_pass
 
-echo ""
-echo "Inserting IP address"
-echo "================================="
-echo "Description:"
-echo "Inserting Travis IP in to config."
-echo "Allows monitor to work"
-travisip=$(ip -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0)
-awk '/BindIP/ { print; print "BindIP                      = \"${travisip}\","; next }1' "${serverfiles}/config.lua" > "${serverfiles}/config.lua"
-
 echo ""
 echo "3.1 - start"
 echo "================================="
@@ -708,6 +699,15 @@ fn_setstatus
 (command_validate.sh)
 fn_test_result_pass
 
+echo ""
+echo "Inserting IP address"
+echo "================================="
+echo "Description:"
+echo "Inserting Travis IP in to config."
+echo "Allows monitor to work"
+travisip=$(ip -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0)
+awk '/BindIP/ { print; print "BindIP                      = \"${travisip}\","; next }1' "${serverfiles}/config.lua" > "${serverfiles}/config.lua"
+
 echo ""
 echo "5.1 - monitor - online"
 echo "================================="