httpd_boostmsg_filter_file=/var/run/httpd_bootmsg_filter
httpd_add_bootmsg_filter()
{
echo "$1" >> $httpd_boostmsg_filter_file
}
httpd_get_bootmsg_regex()
{
local result= script
while read script
do
[ -n "$result" ] && result="$result\\|"
result="$result\\($script\\)"
done < $httpd_boostmsg_filter_file
result="^(\($result\))"
echo "$result"
}
