mirror of
https://github.com/webmin/webmin.git
synced 2026-01-16 15:06:07 +00:00
11 lines
209 B
Perl
Executable File
11 lines
209 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# stop.cgi
|
|
|
|
require './usermin-lib.pl';
|
|
$access{'stop'} || &error($text{'stop_ecannot'});
|
|
&error_setup($text{'stop_err'});
|
|
$err = &stop_usermin();
|
|
&error($err) if ($err);
|
|
&redirect("");
|
|
|