mirror of
https://github.com/webmin/webmin.git
synced 2026-02-09 00:39:57 +00:00
13 lines
253 B
Perl
Executable File
13 lines
253 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# restart.cgi
|
|
# Restart the running squid process
|
|
|
|
require './squid-lib.pl';
|
|
&ReadParse();
|
|
&error_setup($text{'restart_ftrs'});
|
|
$err = &apply_configuration();
|
|
&error($err) if ($err);
|
|
&webmin_log("apply");
|
|
&redirect($in{'redir'});
|
|
|