mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-08-04 00:29:27 +08:00
12 lines
256 B
Bash
Executable File
12 lines
256 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "x$(uci -q get quickstart.main.disable_dhns)" = x1 ]; then
|
|
echo "Already disabled!"
|
|
else
|
|
echo "Disabling..."
|
|
uci set quickstart.main.disable_dhns=1
|
|
uci commit quickstart
|
|
/etc/init.d/quickstart restart
|
|
echo "Done"
|
|
fi
|