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