mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
14 lines
272 B
Perl
Executable File
14 lines
272 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# start_hostsentry.cgi
|
|
# Start the hostsentry daemon
|
|
|
|
require './sentry-lib.pl';
|
|
&error_setup($text{'hostsentry_starterr'});
|
|
|
|
$err = &start_hostsentry();
|
|
&error($err) if ($err);
|
|
&webmin_log("start", "hostsentry");
|
|
|
|
&redirect("edit_hostsentry.cgi");
|
|
|