mirror of
https://github.com/webmin/webmin.git
synced 2025-07-25 15:09:18 +00:00
11 lines
232 B
Perl
Executable File
11 lines
232 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# start.cgi
|
|
# Start the mon process
|
|
|
|
require './mon-lib.pl';
|
|
&error_setup($text{'start_err'});
|
|
$out = &backquote_logged("$config{'start_cmd'} 2>&1 </dev/null");
|
|
&error("<tt>$out</tt>") if ($?);
|
|
&redirect("");
|
|
|