Magellan Linux

Diff of /alx-src/trunk/tinyalxconfig-ng/functions/config_network.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 455 by niro, Thu Jun 5 19:09:51 2008 UTC revision 457 by niro, Thu Jun 5 19:13:31 2008 UTC
# Line 1  Line 1 
1  # $Header: /home/cvsd/alx-cvs/alx-src/tinyalxconfig-ng/functions/config_network.sh,v 1.9 2008-06-05 19:09:51 niro Exp $  # $Header: /home/cvsd/alx-cvs/alx-src/tinyalxconfig-ng/functions/config_network.sh,v 1.11 2008-06-05 19:13:31 niro Exp $
2  # configures networkin on the host via mysql db settings  # configures networkin on the host via mysql db settings
3    
4  # needs exported iface variable!  # needs exported iface variable!
# Line 15  config_networking() Line 15  config_networking()
15   evaluate_table cfg_network   evaluate_table cfg_network
16    
17   # configure hostname and domain settings:   # configure hostname and domain settings:
18   echo "${cfg_network_hostanme}" > /etc/hostname   echo "${cfg_network_hostname}" > /etc/hostname
19   echo -e "127.0.0.1\tlocalhost.${cfg_network_domain}\tlocalhost\t${cfg_network_hostname}" > /etc/hosts   echo -e "127.0.0.1\tlocalhost.${cfg_network_domain}\tlocalhost\t${cfg_network_hostname}" > /etc/hosts
20    
21  # if ! check_network_settings  # if ! check_network_settings
# Line 27  config_networking() Line 27  config_networking()
27   # remove all old nics and modules configs   # remove all old nics and modules configs
28   find /etc/conf.d -type f -name 'net.*' | xargs rm   find /etc/conf.d -type f -name 'net.*' | xargs rm
29    
30  # # update confd-networking default iface   # update default iface (is this needed anymore?)
31  # [ ! -d ${SETTINGSPATH} ] && install -d ${SETTINGSPATH}   [ ! -d ${SETTINGSPATH} ] && install -d ${SETTINGSPATH}
32  # echo "${iface}" > ${SETTINGSPATH}/confd-networking   echo "${cfg_network_default_iface}" > ${SETTINGSPATH}/default_iface
33    
34   # configure all available interfaces but activate only the default_iface!   # configure all available interfaces but activate only the default_iface!
35   iface_list=$(mysqldo "select iface from cfg_interfaces where serial='${ALX_SERIAL}'")   iface_list=$(mysqldo "select iface from cfg_interfaces where serial='${ALX_SERIAL}'")

Legend:
Removed from v.455  
changed lines
  Added in v.457