diff options
author | Adam Frisby | 2007-04-21 05:09:06 +0000 |
---|---|---|
committer | Adam Frisby | 2007-04-21 05:09:06 +0000 |
commit | 9990bf4826c737c63c16c810ad025333f2b506ac (patch) | |
tree | 1bb3180ab19f4b0de9567822fe667190b63f8015 /OpenSim.RegionServer | |
parent | Added an island to the coast of this terrain. (diff) | |
download | opensim-SC_OLD-9990bf4826c737c63c16c810ad025333f2b506ac.zip opensim-SC_OLD-9990bf4826c737c63c16c810ad025333f2b506ac.tar.gz opensim-SC_OLD-9990bf4826c737c63c16c810ad025333f2b506ac.tar.bz2 opensim-SC_OLD-9990bf4826c737c63c16c810ad025333f2b506ac.tar.xz |
Config:
* Added sane defaults to each configuration step. (The defaults for sim/user/grid will now create a working grid)
Diffstat (limited to 'OpenSim.RegionServer')
-rw-r--r-- | OpenSim.RegionServer/RegionInfo.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim.RegionServer/RegionInfo.cs b/OpenSim.RegionServer/RegionInfo.cs index d3f67ef..d17e1fd 100644 --- a/OpenSim.RegionServer/RegionInfo.cs +++ b/OpenSim.RegionServer/RegionInfo.cs | |||
@@ -177,7 +177,7 @@ namespace OpenSim | |||
177 | attri = configData.GetAttribute("GridServerURL"); | 177 | attri = configData.GetAttribute("GridServerURL"); |
178 | if (attri == "") | 178 | if (attri == "") |
179 | { | 179 | { |
180 | this.GridURL = OpenSim.Framework.Console.MainConsole.Instance.CmdPrompt("Grid server URL"); | 180 | this.GridURL = OpenSim.Framework.Console.MainConsole.Instance.CmdPrompt("Grid server URL","http://127.0.0.1:8001/"); |
181 | configData.SetAttribute("GridServerURL", this.GridURL); | 181 | configData.SetAttribute("GridServerURL", this.GridURL); |
182 | } | 182 | } |
183 | else | 183 | else |
@@ -190,7 +190,7 @@ namespace OpenSim | |||
190 | attri = configData.GetAttribute("GridSendKey"); | 190 | attri = configData.GetAttribute("GridSendKey"); |
191 | if (attri == "") | 191 | if (attri == "") |
192 | { | 192 | { |
193 | this.GridSendKey = OpenSim.Framework.Console.MainConsole.Instance.CmdPrompt("Key to send to grid server"); | 193 | this.GridSendKey = OpenSim.Framework.Console.MainConsole.Instance.CmdPrompt("Key to send to grid server","null"); |
194 | configData.SetAttribute("GridSendKey", this.GridSendKey); | 194 | configData.SetAttribute("GridSendKey", this.GridSendKey); |
195 | } | 195 | } |
196 | else | 196 | else |
@@ -203,7 +203,7 @@ namespace OpenSim | |||
203 | attri = configData.GetAttribute("GridRecvKey"); | 203 | attri = configData.GetAttribute("GridRecvKey"); |
204 | if (attri == "") | 204 | if (attri == "") |
205 | { | 205 | { |
206 | this.GridRecvKey = OpenSim.Framework.Console.MainConsole.Instance.CmdPrompt("Key to expect from grid server"); | 206 | this.GridRecvKey = OpenSim.Framework.Console.MainConsole.Instance.CmdPrompt("Key to expect from grid server","null"); |
207 | configData.SetAttribute("GridRecvKey", this.GridRecvKey); | 207 | configData.SetAttribute("GridRecvKey", this.GridRecvKey); |
208 | } | 208 | } |
209 | else | 209 | else |