Make "show version" console command available across all servers

0.7.4-extended
Justin Clark-Casey (justincc) 2012-11-23 04:19:08 +00:00
parent 31373ee099
commit 70ccc63b83
2 changed files with 7 additions and 8 deletions

View File

@ -104,10 +104,6 @@ namespace OpenSim.Framework.Servers
"show threads",
"Show thread status", HandleShow);
m_console.Commands.AddCommand("General", false, "show version",
"show version",
"Show server version", HandleShow);
m_console.Commands.AddCommand("General", false, "threads abort",
"threads abort <thread-id>",
"Abort a managed thread. Use \"show threads\" to find possible threads.", HandleThreadsAbort);
@ -263,10 +259,6 @@ namespace OpenSim.Framework.Servers
case "threads":
Notice(GetThreadsReport());
break;
case "version":
Notice(GetVersionText());
break;
}
}

View File

@ -167,6 +167,9 @@ namespace OpenSim.Framework.Servers
m_console.Commands.AddCommand(
"General", false, "show info", "show info", "Show general information about the server", HandleShow);
m_console.Commands.AddCommand(
"General", false, "show version", "show version", "Show server version", HandleShow);
m_console.Commands.AddCommand(
"General", false, "show uptime", "show uptime", "Show server uptime", HandleShow);
@ -222,6 +225,10 @@ namespace OpenSim.Framework.Servers
ShowInfo();
break;
case "version":
Notice(GetVersionText());
break;
case "uptime":
Notice(GetUptimeReport());
break;