From 37bd933a6bf21c235fcc78a1376aa1d773941d2d Mon Sep 17 00:00:00 2001 From: Molly Lau Date: Mon, 19 Jun 2023 18:14:14 +0900 Subject: [PATCH] Update InstallNET.sh --- Linux_reinstall/InstallNET.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linux_reinstall/InstallNET.sh b/Linux_reinstall/InstallNET.sh index f8656c6..48989db 100644 --- a/Linux_reinstall/InstallNET.sh +++ b/Linux_reinstall/InstallNET.sh @@ -1251,7 +1251,7 @@ function getInterface() { # Files in "/etc/sysconfig/network-scripts/", reference: https://zetawiki.com/wiki/%EB%B6%84%EB%A5%98:/etc/sysconfig/network-scripts NetCfgFiles=`ls -Sl $NetCfgDir 2>/dev/null | awk -F' ' '{print $NF}' | grep -iv 'readme\|ifcfg-lo\|ifcfg-bond\|ifup\|ifdown\|vpn\|init.ipv6-global\|network-functions' | grep -s "ifcfg\|nmconnection"` for Files in $NetCfgFiles; do - if [[ `grep -w "$interface4\|$interface6" "$NetCfgDir$Files"` != "" ]] && [[ "$Files" =~ "$interface4" || "$Files" =~ "$interface6" ]]; then + if [[ `grep -w "$interface4\|$interface6" "$NetCfgDir$Files"` != "" ]]; then tmpNetCfgFiles+=$(echo -e "\n""$NetCfgDir$Files") fi done