https://issues.apache.org/bugzilla/show_bug.cgi?id=48198
Summary: Changes in apache rc script conflicts with FIB patch
of rc.subr
Product: Apache httpd-2
Version: 2.2.11
Platform: PC
OS/Version: FreeBSD
Status: NEW
Severity: regression
Priority: P2
Component: Core
AssignedTo: [email protected]
ReportedBy: [email protected]
Patch of rc.subr
http://server.in/softdev/fib_patch.html
in 2.2.11 you write:
[ -z "$apache22_fib" ] && apache22_fib="NO"
instead of old one:
[ -z "$apache22_fib" ] && apache22_fib="0"
That your update case a hack in rc.subr:
if [ "${name}_fib" && "${name}_fib" ne "NO" ]; then
instead of old one:
if [ "${name}_fib" ]; then
Let's guess what is better OLD or NEW form?
I think OLD form is better, becase of apache_fib="NO" really means to use FIB
by default. That is fib with '0'.
So in your script you must chech if apache_fib eq '0' or 'NO'
then return 0
else
command="setfib -F ${apache22_fib} ${command}"
Are you agree?
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]