10 lines
229 B
Bash
Executable File
10 lines
229 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci set system.@system[0].timezone=CST-8
|
|
uci set system.@system[0].zonename=Asia/Shanghai
|
|
uci commit system
|
|
|
|
sed -i 's#https://downloads.openwrt.org#https://mirrors.tencent.com/lede#g' /etc/opkg/distfeeds.conf
|
|
|
|
exit 0
|