diff options
| author | Doug Barton <dougb@FreeBSD.org> | 2000-12-17 22:14:49 +0000 |
|---|---|---|
| committer | Doug Barton <dougb@FreeBSD.org> | 2000-12-17 22:14:49 +0000 |
| commit | 8f38f3b2e60e7217901da5e879bbfc01a3eaeace (patch) | |
| tree | ce1e61c4b07f93a45df2bdbe5a32a33c3e265ed2 /etc/rc.network | |
| parent | b048419e0d44ff30dfac3f443a8b632d06292853 (diff) | |
Notes
Diffstat (limited to 'etc/rc.network')
| -rw-r--r-- | etc/rc.network | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/etc/rc.network b/etc/rc.network index 1e67911c26ef..ef6c6038b029 100644 --- a/etc/rc.network +++ b/etc/rc.network @@ -64,18 +64,20 @@ network_pass1() { [Yy][Ee][Ss]) if [ -r "${ipfilter_rules}" ]; then echo -n ' ipfilter'; - ${ipfilter_program:-ipf -Fa -f} "${ipfilter_rules}" ${ipfilter_flags} + ${ipfilter_program:-/sbin/ipf -Fa -f} \ + "${ipfilter_rules}" ${ipfilter_flags} case "${ipmon_enable}" in [Yy][Ee][Ss]) echo -n ' ipmon' - ${ipmon_program:-ipmon} ${ipmon_flags} + ${ipmon_program:-/sbin/ipmon} ${ipmon_flags} ;; esac case "${ipnat_enable}" in [Yy][Ee][Ss]) if [ -r "${ipnat_rules}" ]; then echo -n ' ipnat'; - ${ipnat_program:-ipnat -CF -f} "${ipnat_rules}" ${ipnat_flags} + eval ${ipnat_program:-/sbin/ipnat -CF -f} \ + "${ipnat_rules}" ${ipnat_flags} else echo -n ' NO IPNAT RULES' fi |
