aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ConfigurationMember.cs
diff options
context:
space:
mode:
authorDahlia Trimble2008-12-26 09:14:49 +0000
committerDahlia Trimble2008-12-26 09:14:49 +0000
commita23e9a36a19343824790bc2f73f1e72c7cfc592a (patch)
treeda03d50fc730bfd1c51c191adfb9b6aa6dc4a3bb /OpenSim/Framework/ConfigurationMember.cs
parentAdd a few forgotten fields to interregion data (diff)
downloadopensim-SC_OLD-a23e9a36a19343824790bc2f73f1e72c7cfc592a.zip
opensim-SC_OLD-a23e9a36a19343824790bc2f73f1e72c7cfc592a.tar.gz
opensim-SC_OLD-a23e9a36a19343824790bc2f73f1e72c7cfc592a.tar.bz2
opensim-SC_OLD-a23e9a36a19343824790bc2f73f1e72c7cfc592a.tar.xz
Substitutes the value of an environment variable if the value of a region configuration variable begins with a "$" character. Should be useful when moving region configs between hosts
Diffstat (limited to 'OpenSim/Framework/ConfigurationMember.cs')
-rw-r--r--OpenSim/Framework/ConfigurationMember.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/ConfigurationMember.cs b/OpenSim/Framework/ConfigurationMember.cs
index bbfe28d..7a5e6b2 100644
--- a/OpenSim/Framework/ConfigurationMember.cs
+++ b/OpenSim/Framework/ConfigurationMember.cs
@@ -285,6 +285,11 @@ namespace OpenSim.Framework
285 console_result = attribute; 285 console_result = attribute;
286 } 286 }
287 287
288 // if the first character is a "$", assume it's the name
289 // of an environment variable and substitute with the value of that variable
290 if (console_result.StartsWith("$"))
291 console_result = System.Environment.GetEnvironmentVariable(console_result.Substring(1));
292
288 switch (configOption.configurationType) 293 switch (configOption.configurationType)
289 { 294 {
290 case ConfigurationOption.ConfigurationTypes.TYPE_STRING: 295 case ConfigurationOption.ConfigurationTypes.TYPE_STRING: