mirror of
https://github.com/webmin/webmin.git
synced 2025-07-23 00:30:33 +00:00
12 lines
209 B
Perl
Executable File
12 lines
209 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# stop.cgi
|
|
# Stop the MySQL database server
|
|
|
|
require './mysql-lib.pl';
|
|
&error_setup($text{'stop_err'});
|
|
$err = &stop_mysql();
|
|
&error($err) if ($err);
|
|
&webmin_log("stop");
|
|
&redirect("");
|
|
|