Use numeric prefixes for uci-defaults scripts
[project/luci.git] / applications / luci-app-fwknopd / root / etc / uci-defaults / luci-fwknopd
diff --git a/applications/luci-app-fwknopd/root/etc/uci-defaults/luci-fwknopd b/applications/luci-app-fwknopd/root/etc/uci-defaults/luci-fwknopd
deleted file mode 100644 (file)
index 01b85de..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-#-- Copyright 2015 Jonathan Bennett <jbennett@incomsystems.biz>
-#-- Licensed to the public under the GNU General Public License v2.
-. /lib/functions/network.sh
-
-uci batch <<EOF
-       add ucitrack fwknopd
-       set ucitrack.@fwknopd[-1].init=fwknopd
-       commit ucitrack
-EOF
-
-uci delete fwknopd.@access[0].KEY
-uci delete fwknopd.@access[0].HMAC_KEY
-uci set fwknopd.@access[0].keytype='Base 64 key'
-uci set fwknopd.@access[0].hkeytype='Base 64 key'
-uci set fwknopd.@access[0].KEY_BASE64=`fwknopd --key-gen | awk '/^KEY/ {print $2;}'`
-uci set fwknopd.@access[0].HMAC_KEY_BASE64=`fwknopd --key-gen | awk '/^HMAC/ {print $2;}'`
-uci set fwknopd.@config[0].ENABLE_IPT_FORWARDING='y'
-
-uci commit fwknopd
-rm -f /tmp/luci-indexcache
-exit 0