modules: Split luci-mod-full
[project/luci.git] / modules / luci-mod-admin-full / root / etc / uci-defaults / 50_luci-mod-admin-full
diff --git a/modules/luci-mod-admin-full/root/etc/uci-defaults/50_luci-mod-admin-full b/modules/luci-mod-admin-full/root/etc/uci-defaults/50_luci-mod-admin-full
deleted file mode 100755 (executable)
index 372eb15..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-if [ "$(uci -q get luci.diag)" != "internal" ]; then
-       host=""
-
-       if [ -s /etc/os-release ]; then
-               . /etc/os-release
-               host="${HOME_URL:-${BUG_URL:-$LEDE_DEVICE_MANUFACTURER_URL}}"
-               host="${host#*://}"
-               host="${host%%/*}"
-       fi
-
-       uci -q batch <<-EOF >/dev/null
-               set luci.diag=internal
-               set luci.diag.dns='${host:-openwrt.org}'
-               set luci.diag.ping='${host:-openwrt.org}'
-               set luci.diag.route='${host:-openwrt.org}'
-               commit luci
-       EOF
-fi
-
-exit 0