Handle hostnames with upper-case letters
[webmin.git] / heartbeat / start.cgi
1 #!/usr/local/bin/perl
2 # start.cgi
3 # Start the heartbeat process
4
5 require './heartbeat-lib.pl';
6 &error_setup($text{'start_err'});
7 $out = &backquote_logged("$config{'start_cmd'} 2>&1 </dev/null");
8 if ($?) {
9         &error("<pre>$out</pre>");
10         }
11 &redirect("");
12