diff options
author | Melanie | 2009-11-30 14:15:00 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2009-12-01 18:04:21 +0000 |
commit | e385961f20d4c5ba80cfb57158010e27aca11ad3 (patch) | |
tree | b5af9d1eda7719a65fcb2f2292f2d68370d29db5 /OpenSim | |
parent | Apply patch to stop failure of llParcelMediaCommandList() on group deeded land (diff) | |
download | opensim-SC-e385961f20d4c5ba80cfb57158010e27aca11ad3.zip opensim-SC-e385961f20d4c5ba80cfb57158010e27aca11ad3.tar.gz opensim-SC-e385961f20d4c5ba80cfb57158010e27aca11ad3.tar.bz2 opensim-SC-e385961f20d4c5ba80cfb57158010e27aca11ad3.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 | // |