When trinux goes through it's automated ethernet
configuration (based on files in tux/config) it would
be nice to have ipaliased addresses available here. We
can't use eth0:1 in the filename (: is an invalid char)
so instead we can do this in 'netcfg' by adding a
single line...
for i in $savedface
do
# handle ipaliases - can't have
: in filename - this line is new.
i=`echo $i | sed -e 's/-/:/'`
echo "Configuring $i"
if [ "$IP" = "" ]
then