X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage2%2Fbootscripts%2Fnetwork;h=70ac088d45df7f1cc8cd2d47a37cd74f0600bb55;hb=785f43b4dd400fff43b9fa169fded7fef7c9025e;hp=3fa69ff5b3d9e43d71ae7a403129c97e2fa2245e;hpb=16cc35ba4890382ee9368a176e4f5a7fa773b7a6;p=hvlinux.git diff --git a/stage2/bootscripts/network b/stage2/bootscripts/network index 3fa69ff..70ac088 100755 --- a/stage2/bootscripts/network +++ b/stage2/bootscripts/network @@ -20,12 +20,6 @@ if [ ! -x /sbin/ip ]; then exit ${EXIT_CODE_FAILURE} fi -# Check that the hostname program is present and executable. -if [ ! -x /bin/hostname ]; then - msg_log "*** ERROR: /bin/hostname not found." - exit ${EXIT_CODE_FAILURE} -fi - CWD=`pwd` cd /etc/sysconfig/network @@ -34,21 +28,15 @@ case "$1" in start) for i in ${INTERFACES_UP}; do if LANG=C egrep -L "^ONBOOT=\"?[Yy][Ee][Ss]\"?" ifconfig.$i >/dev/null 2>&1 ; then - cmd_run_log_box "Ethernet Adapter <$i> init" /etc/rc.d/init.d/ifup "$i" + cmd_run_log_box_warn "Ethernet Adapter <$i> init" /etc/rc.d/init.d/ifup "$i" fi done - - cmd_run_log_box "Setting hostname: ${DEFAULT_HOSTNAME}" /bin/hostname ${DEFAULT_HOSTNAME} - - if [ -n "${GATEWAY}" ]; then - cmd_run_log_box "Adding default route to gateway ${GATEWAY}" ip route add default via ${GATEWAY} - fi ;; stop) for i in ${INTERFACES_DN} ; do if LC_ALL= LANG= ip link show dev $i 2> /dev/null | grep -q "UP" >/dev/null 2>&1 ; then - cmd_run_log_box "Ethernet Adapter <$i> stop" /etc/rc.d/init.d/ifdown "$i" + cmd_run_log_box_warn "Ethernet Adapter <$i> stop" /etc/rc.d/init.d/ifdown "$i" fi done ;;