From 10d08c5287b15a2a6a7a348b2e24385a7f6e1cac Mon Sep 17 00:00:00 2001 From: wukongdaily <2666180@gmail.com> Date: Sat, 5 Oct 2024 14:35:41 +0800 Subject: [PATCH] modify hostname for address --- gl-inet.sh | 5 +++-- mt-3000/mt3000.sh | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/gl-inet.sh b/gl-inet.sh index 910c6c5..500b822 100755 --- a/gl-inet.sh +++ b/gl-inet.sh @@ -156,7 +156,7 @@ add_dhcp_domain() { add_author_info() { uci set system.@system[0].description='wukongdaily' uci set system.@system[0].notes='文档说明: - https://github.com/wukongdaily/gl-inet-onescript' + https://wkdaily.cpolar.cn/' uci commit system } @@ -345,7 +345,8 @@ update_luci_app_quickstart() { is-opkg install luci-i18n-quickstart-zh-cn --force-depends >/dev/null 2>&1 yellow "恭喜您!现在你的路由器已经变成iStoreOS风格啦!" green "如果没有首页和网络向导,可以执行第8项 更新luci_app_quickstart" - green "您可以登录网页 查看是否生效 http://gl-mt3000.local/cgi-bin/luci" + addr_hostname=$(uci get system.@system[0].hostname) + green "您可以登录网页 查看是否生效 http://${addr_hostname}.local/cgi-bin/luci" else red "请先执行第一项 一键iStoreOS风格化" fi diff --git a/mt-3000/mt3000.sh b/mt-3000/mt3000.sh index 9a394c4..3098e53 100644 --- a/mt-3000/mt3000.sh +++ b/mt-3000/mt3000.sh @@ -87,7 +87,7 @@ create_and_format_partitions() { change_overlay_usb() { install_depends_apps blueinfo "现在开始查找USB设备分区 请稍后......" - local USB_PARTITION=$(lsblk -dn -o NAME,RM,TYPE | awk '$2=="1" && $3=="disk" {print "/dev/"$1; exit}') + local USB_PARTITION=$(lsblk -dn -o NAME,TRAN | awk '$2=="usb" {print "/dev/"$1; exit}') if [ -z "$USB_PARTITION" ]; then red "未找到USB磁盘。" exit 1