2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-29 17:23:08 +00:00

fix confignetwork_static_installnic failure on ubuntu (#3846)

This commit is contained in:
Yuan Bai 2017-09-05 17:05:04 +08:00 committed by Bin Xu
parent 4fb9898cdf
commit ca67bbf9f6

View File

@ -534,8 +534,7 @@ elif [ "$1" = "-s" ];then
parse_nic_extra_params "$str_extra_params"
fi
# Bring the interface down before cofniguring the interface
ifdown $str_inst_nic
# cofniguring the interface
if [ -f "/etc/debian_version" ];then
str_conf_file="/etc/network/interfaces.d/${str_inst_nic}"
@ -641,7 +640,7 @@ elif [ "$1" = "-s" ];then
fi
fi
ifup $str_inst_nic
ifdown $str_inst_nic;ifup $str_inst_nic
if [ $? -ne 0 ]; then
log_error "ifup $str_inst_nic failed."
error_code=1