项目文件夹

文件
2026-07-13 13:12:17 +08:00

16 行
246 B
Perl
可执行文件

#!/usr/local/bin/perl
# bootup.cgi
# Enable or disable ipfw at boot time
require './ipfw-lib.pl';
&ReadParse();
if ($in{'boot'}) {
&enable_boot();
}
else {
&disable_boot();
}
&webmin_log($in{'boot'} ? "bootup" : "bootdown");
&redirect("");