aboutsummaryrefslogtreecommitdiffstats
path: root/openwrt/package/ulogd/files
diff options
context:
space:
mode:
Diffstat (limited to 'openwrt/package/ulogd/files')
-rw-r--r--openwrt/package/ulogd/files/ulogd.default1
-rw-r--r--openwrt/package/ulogd/files/ulogd.init17
2 files changed, 0 insertions, 18 deletions
diff --git a/openwrt/package/ulogd/files/ulogd.default b/openwrt/package/ulogd/files/ulogd.default
deleted file mode 100644
index 86bf444806..0000000000
--- a/openwrt/package/ulogd/files/ulogd.default
+++ /dev/null
@@ -1 +0,0 @@
-OPTIONS="-d" \ No newline at end of file
diff --git a/openwrt/package/ulogd/files/ulogd.init b/openwrt/package/ulogd/files/ulogd.init
deleted file mode 100644
index d3863c5f2a..0000000000
--- a/openwrt/package/ulogd/files/ulogd.init
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-BIN=ulogd
-DEFAULT=/etc/default/$BIN
-LOG_D=/var/log
-[ -f $DEFAULT ] && . $DEFAULT
-
-case $1 in
- start)
- $BIN $OPTIONS
- ;;
- *)
- echo "usage: $0 (start)"
- exit 1
-esac
-
-exit $?