1#!/usr/local/bin/perl
2# stop.cgi
3# Stop the MySQL database server
4
5require './mysql-lib.pl';
6&error_setup($text{'stop_err'});
7$err = &stop_mysql();
8&error($err) if ($err);
9&webmin_log("stop");
10&redirect("");
11
12