Files
webmin/mysql/stop.cgi
2026-08-03 10:35:30 -07:00

13 lines
259 B
Perl
Executable File

#!/usr/local/bin/perl
# stop.cgi
# Stop the MySQL database server
require './mysql-lib.pl';
&error_setup($text{'stop_err'});
$access{'stop'} || &error($text{'stop_ecannot'});
$err = &stop_mysql();
&error($err) if ($err);
&webmin_log("stop");
&redirect("");