aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
authoronefang2019-08-13 01:01:56 +1000
committeronefang2019-08-13 01:01:56 +1000
commitc25dbbfc4447898fac20ab58a8e74bb5a6ee5f76 (patch)
treea8b1df0545bc0e9a76fa57aa1fb4209d2f82eb19 /scripts
parentStop using num2name() in scripts. (diff)
downloadopensim-SC_OLD-c25dbbfc4447898fac20ab58a8e74bb5a6ee5f76.zip
opensim-SC_OLD-c25dbbfc4447898fac20ab58a8e74bb5a6ee5f76.tar.gz
opensim-SC_OLD-c25dbbfc4447898fac20ab58a8e74bb5a6ee5f76.tar.bz2
opensim-SC_OLD-c25dbbfc4447898fac20ab58a8e74bb5a6ee5f76.tar.xz
Modify start-sim to start up everything, with the output in the left tmux window.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/start-sim63
1 files changed, 39 insertions, 24 deletions
diff --git a/scripts/start-sim b/scripts/start-sim
index bf6a32e..3e03911 100755
--- a/scripts/start-sim
+++ b/scripts/start-sim
@@ -11,6 +11,7 @@ tmux_window="${tmux_command} select-window -t ${tmux_session}"
11tmux_send="${tmux_command} send-keys -t ${tmux_session}" 11tmux_send="${tmux_command} send-keys -t ${tmux_session}"
12bindir="${PRGDIR}/../bin" 12bindir="${PRGDIR}/../bin"
13date=$(date '+%F_%T') 13date=$(date '+%F_%T')
14all=""
14delay=60 15delay=60
15quiet="" 16quiet=""
16waiting="" 17waiting=""
@@ -32,6 +33,12 @@ else
32 SUDO="sudo -Hu ${OS_USER}" 33 SUDO="sudo -Hu ${OS_USER}"
33fi 34fi
34 35
36if [ "$1" = "-a" ]
37then
38 all="-a"
39 shift 1
40fi
41
35if [ "$1" = "-d" ] 42if [ "$1" = "-d" ]
36then 43then
37 delay=$2 44 delay=$2
@@ -52,31 +59,35 @@ fi
52 59
53if [ "x$1" = "x" ]; then 60if [ "x$1" = "x" ]; then
54 tgt=$(basename $(pwd)) 61 tgt=$(basename $(pwd))
62 # These checks are kludgy.
55 if [ "$tgt" = "scripts" ]; then 63 if [ "$tgt" = "scripts" ]; then
64 all="-a"
65 cd ${PRGDIR}/../../config/ROBUST
66 tgt="ROBUST"
67 fi
68 if [ "$tgt" = "bin" ]; then
56 uptime 69 uptime
57 pushd ${PRGDIR}/../../config/ROBUST >/dev/null 70 wait_for_text "ROBUST" "INITIALIZATION COMPLETE FOR ROBUST"
58 ./start-sim -q 71 if [ ! "x$all" = "x" ]
59 popd > /dev/null 72 then
60 echo "Sleeping for $((${delay} / 2)) seconds." 73 echo "Sleeping for $((${delay} / 2)) seconds."
61 sleep $((${delay} / 2)) 74 sleep $((${delay} / 2))
62 for i in $(seq -w 1 99) 75 for i in $(seq -w 1 99)
63 do 76 do
64 j=$(num2name ${i}) 77 if [ -e "${PRGDIR}/../../config/sim${i}" ]
65 if [ -e "${PRGDIR}/../../config/${j}" ] 78 then
66 then 79 uptime
67 uptime 80 echo "Starting sim${i}."
68 echo "Starting ${j}." 81 cd ${PRGDIR}/../../config/sim${i}; ./start-sim -w
69 pushd ${PRGDIR}/../../config/${j} >/dev/null 82 uptime
70 ./start-sim -w 83 # Sleep for a while, so that there is plenty of time to finish starting scripts and such,
71 popd > /dev/null 84 # and we are not keeping the computer very busy if there are lots of sims.
72 uptime 85 echo "Sleeping for ${delay} seconds."
73 # Sleep for a while, so that there is plenty of time to finish starting scripts and such, 86 sleep ${delay}
74 # and we are not keeping the computer very busy if there are lots of sims. 87 fi
75 echo "Sleeping for ${delay} seconds." 88 done
76 sleep ${delay} 89 uptime
77 fi 90 fi
78 done
79 uptime
80 exit 0 91 exit 0
81 fi 92 fi
82 num="$(echo ${tgt} | cut -c 4-)" 93 num="$(echo ${tgt} | cut -c 4-)"
@@ -139,6 +150,11 @@ case $(basename $0) in
139 fi 150 fi
140 fi 151 fi
141 152
153 if [ ! "x$all" = "x" ]
154 then
155 ${tmux_send}:ROBUST.{left} "../scripts/start-sim -a" Enter
156 fi
157
142 if [ "x$quiet" = "x" ] 158 if [ "x$quiet" = "x" ]
143 then 159 then
144 if [ "x$tgt" = "xROBUST" ]; then 160 if [ "x$tgt" = "xROBUST" ]; then
@@ -150,7 +166,6 @@ case $(basename $0) in
150 then 166 then
151 wait_for_text "${title}" "INITIALIZATION COMPLETE FOR ${title}" 167 wait_for_text "${title}" "INITIALIZATION COMPLETE FOR ${title}"
152 fi 168 fi
153
154 ;; 169 ;;
155 170
156 "backup-inventory") 171 "backup-inventory")