diff options
author | Diva Canto | 2014-05-07 16:59:11 -0700 |
---|---|---|
committer | Diva Canto | 2014-05-07 16:59:11 -0700 |
commit | 3db9b847bfc9d1b2619e3467ba4bc34d9d4e5edc (patch) | |
tree | 60cef24b4e9614bced90ee12e458f06ff457f8a4 /OpenSim/Tools/Configger/Main.cs | |
parent | Makes it possible to support grids in which all the simulators share all cent... (diff) | |
download | opensim-SC-3db9b847bfc9d1b2619e3467ba4bc34d9d4e5edc.zip opensim-SC-3db9b847bfc9d1b2619e3467ba4bc34d9d4e5edc.tar.gz opensim-SC-3db9b847bfc9d1b2619e3467ba4bc34d9d4e5edc.tar.bz2 opensim-SC-3db9b847bfc9d1b2619e3467ba4bc34d9d4e5edc.tar.xz |
Allow Tools.Configger to take -inifile as argument
Diffstat (limited to 'OpenSim/Tools/Configger/Main.cs')
-rw-r--r-- | OpenSim/Tools/Configger/Main.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Tools/Configger/Main.cs b/OpenSim/Tools/Configger/Main.cs index 61a12e3..d7d918b 100644 --- a/OpenSim/Tools/Configger/Main.cs +++ b/OpenSim/Tools/Configger/Main.cs | |||
@@ -35,15 +35,16 @@ namespace OpenSim.Tools.Configger | |||
35 | public static int Main(string[] args) | 35 | public static int Main(string[] args) |
36 | { | 36 | { |
37 | ArgvConfigSource argvConfig = new ArgvConfigSource(args); | 37 | ArgvConfigSource argvConfig = new ArgvConfigSource(args); |
38 | |||
38 | argvConfig.AddSwitch("Startup", "format", "f"); | 39 | argvConfig.AddSwitch("Startup", "format", "f"); |
40 | argvConfig.AddSwitch("Startup", "inifile"); | ||
39 | 41 | ||
40 | IConfig startupConfig = argvConfig.Configs["Startup"]; | 42 | IConfig startupConfig = argvConfig.Configs["Startup"]; |
41 | 43 | ||
42 | string format = startupConfig.GetString("format", "ini"); | 44 | string format = startupConfig.GetString("format", "ini"); |
43 | 45 | ||
44 | ConfigurationLoader loader = new ConfigurationLoader(); | 46 | ConfigurationLoader loader = new ConfigurationLoader(); |
45 | 47 | IConfigSource s = loader.LoadConfigSettings(startupConfig); | |
46 | IConfigSource s = loader.LoadConfigSettings(); | ||
47 | 48 | ||
48 | if (format == "mysql") | 49 | if (format == "mysql") |
49 | { | 50 | { |