diff options
-rwxr-xr-x | scripts/robust-include | 11 | ||||
-rwxr-xr-x | scripts/start-sim | 9 |
2 files changed, 16 insertions, 4 deletions
diff --git a/scripts/robust-include b/scripts/robust-include new file mode 100755 index 0000000..e427eb1 --- /dev/null +++ b/scripts/robust-include | |||
@@ -0,0 +1,11 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | # Silly script to get around the lack of includes in ROBUST. | ||
4 | |||
5 | source common.sh | ||
6 | getPrgDir | ||
7 | |||
8 | # The problem here is that the > bit is executed as the user, not as opensim. | ||
9 | cat ${PRGDIR}/../../config/config.ini ${PRGDIR}/../bin/Robust.ini >${PRGDIR}/../../config/Robust.ini | ||
10 | chown -R ${OS_USER}:${OS_USER} ${PRGDIR}/../../config/Robust.ini | ||
11 | chmod 600 ${PRGDIR}/../../config/Robust.ini | ||
diff --git a/scripts/start-sim b/scripts/start-sim index 4bcc803..1414826 100755 --- a/scripts/start-sim +++ b/scripts/start-sim | |||
@@ -22,6 +22,7 @@ function wait_for_text() | |||
22 | done | 22 | done |
23 | } | 23 | } |
24 | 24 | ||
25 | |||
25 | if [ $USER = "${OS_USER}" ] | 26 | if [ $USER = "${OS_USER}" ] |
26 | then | 27 | then |
27 | SUDO="" | 28 | SUDO="" |
@@ -91,10 +92,10 @@ case $(basename $0) in | |||
91 | if [ ! -e ${PRGDIR}/../../caches/${tgt}.pid ] | 92 | if [ ! -e ${PRGDIR}/../../caches/${tgt}.pid ] |
92 | then | 93 | then |
93 | if [ "x$tgt" = "xROBUST" ]; then | 94 | if [ "x$tgt" = "xROBUST" ]; then |
94 | # TODO - the problem here is that the > bit is executed as the user, not as opensim. | 95 | pushd ${PRGDIR}/../scripts |
95 | $SUDO cat ${PRGDIR}/../../config/config.ini ${PRGDIR}/../../config/Robust.ini.template >${PRGDIR}/../../config/Robust.ini | 96 | $SUDO ./robust-include |
96 | # $SUDO chown -R ${OS_USER}:${OS_USER} ${PRGDIR}/../../config/Robust.ini | 97 | popd |
97 | chmod 640 ${PRGDIR}/../../config/Robust.ini | 98 | cmd="${cmd} -inifile=${PRGDIR}/../../config/Robust.ini" |
98 | ${tmux_command} split-window -hp 50 -t "${tmux_session}:" "${cmd}" | 99 | ${tmux_command} split-window -hp 50 -t "${tmux_session}:" "${cmd}" |
99 | else | 100 | else |
100 | ${tmux_command} new-window -dn "${title}" -t "${tmux_session}:${num}" "${cmd}" | 101 | ${tmux_command} new-window -dn "${title}" -t "${tmux_session}:${num}" "${cmd}" |