Handle hostnames with upper-case letters
[webmin.git] / sentry / start_hostsentry.cgi
1 #!/usr/local/bin/perl
2 # start_hostsentry.cgi
3 # Start the hostsentry daemon
4
5 require './sentry-lib.pl';
6 &error_setup($text{'hostsentry_starterr'});
7
8 $err = &start_hostsentry();
9 &error($err) if ($err);
10 &webmin_log("start", "hostsentry");
11
12 &redirect("edit_hostsentry.cgi");
13