ucentral-schema: derive hostname from label-mac if present

Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
John Crispin
2021-09-14 17:02:46 +02:00
parent 3fa8e33a45
commit 839bee5a6d

View File

@@ -1,5 +1,7 @@
#!/bin.sh
hname=$(cat /sys/class/net/eth0/address | tr -d : | awk '{print tolower($0)}')
hname=$(cat /etc/board.json | jsonfilter -e '@.system.label_macaddr')
[ -z "$hname" ] && hname=$(cat /sys/class/net/eth0/address)
hname=$(echo $hname | tr -d : | awk '{print tolower($0)}')
uci set system.@system[-1].hostname=$hname
uci set ucentral.config.serial=$hname