aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/common.sh4
-rwxr-xr-xscripts/install/create_sim.sh15
-rwxr-xr-xscripts/start-sim2
3 files changed, 10 insertions, 11 deletions
diff --git a/scripts/common.sh b/scripts/common.sh
index c5a86ab..9d985f2 100755
--- a/scripts/common.sh
+++ b/scripts/common.sh
@@ -42,11 +42,11 @@ sanitize()
42} 42}
43 43
44 44
45# Grab the first Section line of the sims .xml file, cut it down to the name. 45# Grab the first Section line of the sims .ini file, cut it down to the name.
46# name=$(getSimName 1) 46# name=$(getSimName 1)
47getSimName() 47getSimName()
48{ 48{
49 grep "<Section " ${PRGDIR}/../../config/$(num2name $1)/*.xml | head -n 1 | cut -d '"' -f 2 49 grep "RegionName" ${PRGDIR}/../../config/$(num2name $1)/*.ini | head -n 1 | cut -d '"' -f 2
50} 50}
51 51
52 52
diff --git a/scripts/install/create_sim.sh b/scripts/install/create_sim.sh
index 08cedba..475c127 100755
--- a/scripts/install/create_sim.sh
+++ b/scripts/install/create_sim.sh
@@ -71,14 +71,13 @@ echo "Creating sim${NUM} on port ${PORT} @ ${LOCATION} - ${NAME}."
71cp -r sim_skeleton sim${NUM} 71cp -r sim_skeleton sim${NUM}
72 72
73cd sim${NUM} 73cd sim${NUM}
74mv My_sim.xml ${sim}.xml 74sed -i "s@SIM_NAME@${NAME}@g" ThisSim.ini
75sed -i "s@SIM_NAME@${NAME}@g" ${sim}.xml 75sed -i "s@SIM_UUID@${UUID}@g" ThisSim.ini
76sed -i "s@SIM_UUID@${UUID}@g" ${sim}.xml 76sed -i "s@SIM_POS@${LOCATION}@g" ThisSim.ini
77sed -i "s@SIM_POS@${LOCATION}@g" ${sim}.xml 77sed -i "s@SIM_IP@${IP}@g" ThisSim.ini
78sed -i "s@SIM_IP@${IP}@g" ${sim}.xml 78sed -i "s@SIM_INT_PORT@$(( ${PORT} + 1 ))@g" ThisSim.ini
79sed -i "s@SIM_INT_PORT@$(( ${PORT} + 1 ))@g" ${sim}.xml 79sed -i "s@SIM_URL@${URL}@g" ThisSim.ini
80sed -i "s@SIM_URL@${URL}@g" ${sim}.xml 80sed -i "s@SIM_SIZE@${SIZE}@g" ThisSim.ini
81sed -i "s@SIM_SIZE@${SIZE}@g" ${sim}.xml
82 81
83ln -s ../../current/scripts/common.sh common.sh 82ln -s ../../current/scripts/common.sh common.sh
84ln -s ../../current/scripts/start-sim start-sim 83ln -s ../../current/scripts/start-sim start-sim
diff --git a/scripts/start-sim b/scripts/start-sim
index 3c6370f..4bcc803 100755
--- a/scripts/start-sim
+++ b/scripts/start-sim
@@ -71,7 +71,7 @@ if [ "x$tgt" = "xROBUST" ]; then
71 title="ROBUST" 71 title="ROBUST"
72elif [ "x$inventory" = "x" ]; then 72elif [ "x$inventory" = "x" ]; then
73 exe="OpenSim" 73 exe="OpenSim"
74 # Grab the first Section line of the sims .xml file, cut it down to the name. 74 # Grab the first RegionName line of the sims .ini file, cut it down to the name.
75 title=$(getSimName ${num}) 75 title=$(getSimName ${num})
76fi 76fi
77 77