From fb938806a2bd1dfbde797808eb5c42b7aa270c9c Mon Sep 17 00:00:00 2001 From: AuxXxilium Date: Tue, 12 Nov 2024 16:02:28 +0100 Subject: [PATCH] functions: finalize hwid Signed-off-by: AuxXxilium --- files/initrd/opt/arc/include/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/initrd/opt/arc/include/functions.sh b/files/initrd/opt/arc/include/functions.sh index cb0f3df4..3989c7a6 100755 --- a/files/initrd/opt/arc/include/functions.sh +++ b/files/initrd/opt/arc/include/functions.sh @@ -565,6 +565,6 @@ function systemCheck () { ############################################################################### # Generate HardwareID function genHWID () { - HWID="$(echo $(dmidecode -t 4 | grep ID | sed 's/.*ID://;s/ //g' | head -1) $(ifconfig | grep eth1 | awk '{print $NF}' | sed 's/://g') | sha256sum | awk '{print $1}' | cut -c1-16)" 2>/dev/null + HWID="$(echo $(dmidecode -t 4 | grep ID | sed 's/.*ID://;s/ //g' | head -1) $(ifconfig | grep eth0 | awk '{print $NF}' | sed 's/://g') | sha256sum | awk '{print $1}' | cut -c1-16)" 2>/dev/null echo "${HWID}" } \ No newline at end of file