diff options
author | Melanie | 2009-11-30 14:15:00 +0000 |
---|---|---|
committer | Melanie | 2009-11-30 14:15:00 +0000 |
commit | 984d5b0de63ccdc9259c129c5e1233bc4005ee92 (patch) | |
tree | 79cb9fd06c813df9eb28089bcbf7259273792dfc /OpenSim | |
parent | * Patch from Misterblue to fix Environment.TickCount for statistics purposes.... (diff) | |
download | opensim-SC_OLD-984d5b0de63ccdc9259c129c5e1233bc4005ee92.zip opensim-SC_OLD-984d5b0de63ccdc9259c129c5e1233bc4005ee92.tar.gz opensim-SC_OLD-984d5b0de63ccdc9259c129c5e1233bc4005ee92.tar.bz2 opensim-SC_OLD-984d5b0de63ccdc9259c129c5e1233bc4005ee92.tar.xz |
Add "shutdown" command to ROBUST shell
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Server/Base/ServicesServerBase.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Server/Base/ServicesServerBase.cs b/OpenSim/Server/Base/ServicesServerBase.cs index 1d9eb0d..63ba673 100644 --- a/OpenSim/Server/Base/ServicesServerBase.cs +++ b/OpenSim/Server/Base/ServicesServerBase.cs | |||
@@ -226,6 +226,10 @@ namespace OpenSim.Server.Base | |||
226 | "quit", | 226 | "quit", |
227 | "Quit the application", HandleQuit); | 227 | "Quit the application", HandleQuit); |
228 | 228 | ||
229 | MainConsole.Instance.Commands.AddCommand("base", false, "shutdown", | ||
230 | "shutdown", | ||
231 | "Quit the application", HandleQuit); | ||
232 | |||
229 | // Allow derived classes to perform initialization that | 233 | // Allow derived classes to perform initialization that |
230 | // needs to be done after the console has opened | 234 | // needs to be done after the console has opened |
231 | // | 235 | // |