Qrux wrote:
> Problem in /sbin/ifup:
> 
> ==
> for S in ${SERVICES}; do
>  if [ ! -n "${S}" -o ! -x "/lib/services/${S}" ]; then
>    MSG="\nUnable to process ${file}.  Either "
>    MSG="${MSG}the SERVICE variable was not set "
>    MSG="${MSG}or the specified service cannot be executed."
>    log_failure_msg "$MSG"
>    exit 1
>  fi
> done
> ==
> 
> Should read:
> 
> ==
> for S in ${SERVICE} ; do
> ==

Yes, that's a typo.  It's a sanity check that ends up getting skipped.

Note that on line 110, the same construct is correct and that's the 
critical part.

I need to rethink that whole check at lines 79-87.


   -- Bruce
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-dev
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to