aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts/install/create_sim.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/install/create_sim.sh')
-rwxr-xr-xscripts/install/create_sim.sh55
1 files changed, 27 insertions, 28 deletions
diff --git a/scripts/install/create_sim.sh b/scripts/install/create_sim.sh
index 0681067..08cedba 100755
--- a/scripts/install/create_sim.sh
+++ b/scripts/install/create_sim.sh
@@ -1,6 +1,6 @@
1#!/bin/bash 1#!/bin/bash
2 2
3source common.sh 3source ../common.sh
4getPrgDir 4getPrgDir
5 5
6NAME=$1 6NAME=$1
@@ -9,8 +9,7 @@ URL=$3
9IP=$4 9IP=$4
10SIZE=$5 10SIZE=$5
11 11
12OSPATH="/opt/opensim" 12cd ${OS_PATH}/config
13cd $OSPATH/config
14 13
15k=0 14k=0
16for i in $(seq -w 1 99) 15for i in $(seq -w 1 99)
@@ -22,38 +21,37 @@ do
22 fi 21 fi
23done 22done
24 23
25if [ "x$NAME" = "x" ] 24if [ "x${NAME}" = "x" ]
26then 25then
27 NAME="No name sim $RANDOM" # Should be unique per grid. 26 NAME="No name sim $RANDOM" # Should be unique per grid.
28 echo "WARNING setting the sim name to [$NAME], this may not be what you want." 27 echo "WARNING setting the sim name to [${NAME}], this may not be what you want."
29fi 28fi
30# Sanitize the name. Not removing [ or ], couldn't get that to work, only important for Windows. 29# Sanitize the name. Not removing [ or ], couldn't get that to work, only important for Windows.
31sim=$(sanitize $NAME) 30sim=$(sanitize ${NAME})
32 31
33if [ "x$LOCATION" = "x" ] 32if [ "x${LOCATION}" = "x" ]
34then 33then
35 LOCATION="$RANDOM,$RANDOM" # again UNIQUE (i.e. ONLY ONE) per grid in THIS case! 34 LOCATION="$RANDOM,$RANDOM" # again UNIQUE (i.e. ONLY ONE) per grid in THIS case!
36 echo "WARNING setting the Location to $LOCATION, this may not be what you want." 35 echo "WARNING setting the Location to ${LOCATION}, this may not be what you want."
37fi 36fi
38 37
39if [ "x$IP" = "x" ] 38if [ "x${IP}" = "x" ]
40then 39then
41 # 0.0.0.0 will work for a single sim per physical machine, otherwise we need the real internal IP.
42 IP="0.0.0.0" 40 IP="0.0.0.0"
43 echo "WARNING setting the InternalAddress to $IP, this may not be what you want." 41 echo "WARNING setting the InternalAddress to ${IP}, this may not be what you want."
44# echo " 0.0.0.0 will work for a single sim per physical machine, otherwise we need the real internal IP." 42# echo " 0.0.0.0 will work for a single sim per physical machine, otherwise we need the real internal IP."
45# According to the OpenSim docs, 0.0.0.0 means to listen on all NICs the machine has, which should work fine. 43# According to the OpenSim docs, 0.0.0.0 means to listen on all NICs the machine has, which should work fine.
46fi 44fi
47 45
48if [ "x$URL" = "x" ] 46if [ "x${URL}" = "x" ]
49then 47then
50# Here we make use of an external IP finding service. Careful, it may move. 48# Here we make use of an external IP finding service. Careful, it may move.
51# URL=$(wget -q http://automation.whatismyip.com/n09230945.asp -O -) # URL is best (without the HTTP://), but IP (e.g. 88.109.81.55) works too. 49# URL=$(wget -q http://automation.whatismyip.com/n09230945.asp -O -) # URL is best (without the HTTP://), but IP (e.g. 88.109.81.55) works too.
52 URL="SYSTEMIP" 50 URL="SYSTEMIP"
53 echo "WARNING setting the ExternalHostName to $URL, this may not be what you want." 51 echo "WARNING setting the ExternalHostName to ${URL}, this may not be what you want."
54fi 52fi
55 53
56if [ "x$SIZE" = "x" ] 54if [ "x${SIZE}" = "x" ]
57then 55then
58 SIZE="256" 56 SIZE="256"
59fi 57fi
@@ -68,29 +66,30 @@ fi
68PORT=$(( 9005 + (10#$k * 5) )) # 9002 is used for HTTP/UDP so START with port 9003! CAUTION Diva/D2 starts at port 9000. 66PORT=$(( 9005 + (10#$k * 5) )) # 9002 is used for HTTP/UDP so START with port 9003! CAUTION Diva/D2 starts at port 9000.
69UUID=$(uuidgen) 67UUID=$(uuidgen)
70 68
71echo "Creating sim$NUM on port $PORT @ $LOCATION - $NAME." 69echo "Creating sim${NUM} on port ${PORT} @ ${LOCATION} - ${NAME}."
72 70
73cp -r sim_skeleton sim$NUM 71cp -r sim_skeleton sim${NUM}
74 72
75cd sim$NUM 73cd sim${NUM}
76mv My_sim.xml ${sim}.xml 74mv My_sim.xml ${sim}.xml
77sed -i "s@SIM_NAME@$NAME@g" ${sim}.xml 75sed -i "s@SIM_NAME@${NAME}@g" ${sim}.xml
78sed -i "s@SIM_UUID@$UUID@g" ${sim}.xml 76sed -i "s@SIM_UUID@${UUID}@g" ${sim}.xml
79sed -i "s@SIM_POS@$LOCATION@g" ${sim}.xml 77sed -i "s@SIM_POS@${LOCATION}@g" ${sim}.xml
80sed -i "s@SIM_IP@$IP@g" ${sim}.xml 78sed -i "s@SIM_IP@${IP}@g" ${sim}.xml
81sed -i "s@SIM_INT_PORT@$(( $PORT + 1 ))@g" ${sim}.xml 79sed -i "s@SIM_INT_PORT@$(( ${PORT} + 1 ))@g" ${sim}.xml
82sed -i "s@SIM_URL@$URL@g" ${sim}.xml 80sed -i "s@SIM_URL@${URL}@g" ${sim}.xml
83sed -i "s@SIM_SIZE@$SIZE@g" ${sim}.xml 81sed -i "s@SIM_SIZE@${SIZE}@g" ${sim}.xml
84 82
85ln -s ../../current/scripts/common.sh common.sh 83ln -s ../../current/scripts/common.sh common.sh
86ln -s ../../current/scripts/start-sim start-sim 84ln -s ../../current/scripts/start-sim start-sim
87cp -P start-sim backup-sim 85cp -P start-sim backup-sim
88cp -P start-sim stop-sim 86cp -P start-sim stop-sim
89 87
90sed -i "s@SIM_NUMBER@$NUM@g" ThisSim.ini 88sed -i "s@SIM_NUMBER@${NUM}@g" ThisSim.ini
91sed -i "s@SIM_PORT@$PORT@g" ThisSim.ini 89sed -i "s@SIM_PORT@${PORT}@g" ThisSim.ini
92 90
93sed -i "s@SIM_NUMBER@$NUM@g" opensim-monit.conf 91sed -i "s@OS_PATH@${OS_PATH}@g" opensim-monit.conf
92sed -i "s@SIM_NUMBER@${NUM}@g" opensim-monit.conf
94 93
95sudo chown -R opensim:opensim .. 94sudo chown -R ${OS_USER}:${OS_USER} ..
96sudo chmod -R g+w .. 95sudo chmod -R g+w ..