Browse Source

moved ip insert next to monitor

pull/1644/head
Daniel Gibbs 8 years ago
parent
commit
3328c0a980
  1. 18
      tests/tests_jc2server.sh

18
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 "================================="

Loading…
Cancel
Save