View | Details | Raw Unified | Return to bug 153264 | Differences between
and this patch

Collapse All | Expand All

(-)apache22/files/apache22.in (-3 / +3 lines)
Lines 174-187 Link Here
174
}
174
}
175
175
176
apache22_checkfib () {
176
apache22_checkfib () {
177
	sysctl net.fibs >/dev/null 2>&1
177
	$SYSCTL net.fibs >/dev/null 2>&1
178
	ret=$? 
178
	ret=$? 
179
 	[ $ret -gt 0 ] && return 0 
179
 	[ $ret -gt 0 ] && return 0 
180
	if [ "x$apache22_fib" != "xNO" ]
180
	if [ "x$apache22_fib" != "xNO" ]
181
	then 
181
	then 
182
		command="setfib -F ${apache22_fib} ${command}"
182
		command="/usr/sbin/setfib -F ${apache22_fib} ${command}"
183
	else
183
	else
184
		return	0
184
		return 0
185
	fi
185
	fi
186
}
186
}

Return to bug 153264