It looks like there is a bug in /etc/sysconfig/network-scripts/ifup-post.
in its present state it is invoking ifup-aliases if $ISALIAS is "no" !!
The ifup-aliases script in turn is invoking
linuxconf --hint ipalias <device>
which actually is generating these error messages.
Just change the following
if [ "$ISALIAS" = yes ] ; then
/etc/sysconfig/network-scripts/ifup-aliases ${DEVICE}
fi
to
if [ "$ISALIAS" = no ] ; then
/etc/sysconfig/network-scripts/ifup-aliases ${DEVICE}
fi
and you should be fine shape AFAIK.
Bharadwaj
--S. Bharadwaj Yadavalli <bharadwaj.yadavalli@compaq.com> AMT, Compaq Computer Corporation <www.digital.com/amt/>
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/