summaryrefslogtreecommitdiffstats
path: root/openwrt/package/frickin/files/frickin.init
diff options
context:
space:
mode:
Diffstat (limited to 'openwrt/package/frickin/files/frickin.init')
-rw-r--r--openwrt/package/frickin/files/frickin.init16
1 files changed, 0 insertions, 16 deletions
diff --git a/openwrt/package/frickin/files/frickin.init b/openwrt/package/frickin/files/frickin.init
deleted file mode 100644
index e07a0945b6..0000000000
--- a/openwrt/package/frickin/files/frickin.init
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-BIN=frickin
-DEFAULT=/etc/default/$BIN
-[ -f $DEFAULT ] && . $DEFAULT
-
-case $1 in
- start)
- $BIN $OPTIONS &
- ;;
- *)
- echo "usage: $0 (start)"
- exit 1
-esac
-
-exit $?