<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># gentoo-linux-lib.pl
# Deal with gentoo's iptables save file

# check_iptables()
# Returns an error message if something is wrong with iptables on this system
sub check_iptables
{
if (!-r "/etc/init.d/ip${ipvx}tables") {
	return &amp;text('gentoo_escript', "&lt;tt&gt;/etc/init.d/ip${ipvx}tables&lt;/tt&gt;");
	}
return undef;
}

local %iptconf;
&amp;read_env_file("/etc/conf.d/ip${ipvx}tables", \%iptconf);
$ip6tables_save_file = $iptconf{'ip6tables_SAVE'};
$iptables_save_file = $iptconf{'iptables_SAVE'};

# apply_iptables()
# Applies the current iptables configuration from the save file
sub apply_iptables
{
local $out = &amp;backquote_logged("cd / ; /etc/init.d/ip${ipvx}tables reload 2&gt;&amp;1");
return $? ? "&lt;pre&gt;$out&lt;/pre&gt;" : undef;
}

1;

</pre></body></html>