mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-30 06:41:29 +00:00
16 lines
496 B
HTML
16 lines
496 B
HTML
<?
|
|
my $act = $request->get("action", "none");
|
|
if($act eq "kill") {
|
|
my $short_name = $request->get("short_name", "none");
|
|
my $instance_id = $request->get("instance_id", "none");
|
|
} elsif($act eq "restart") {
|
|
my $short_name = $request->get("short_name", "none");
|
|
my $instance_id = $request->get("instance_id", "none");
|
|
} elsif($act eq "killall") {
|
|
} elsif($act eq "restartall") {
|
|
}
|
|
|
|
print "{";
|
|
print "\"status\" : 1";
|
|
print "}";
|
|
?> |