diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-15 21:33:09 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-15 21:33:09 +0000 |
commit | ce65869956a44641db12c64aa3a0cfa32b06c030 (patch) | |
tree | bacb3af7274179739601d2c09562e3af0f491372 /package/ulogd/files | |
parent | 4033a8be8c8d61d7b8fe138cc7d142a1f51e1eb6 (diff) |
Add ulogd package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@914 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/ulogd/files')
-rw-r--r-- | package/ulogd/files/ulogd.default | 1 | ||||
-rw-r--r-- | package/ulogd/files/ulogd.init | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/package/ulogd/files/ulogd.default b/package/ulogd/files/ulogd.default new file mode 100644 index 000000000..86bf44480 --- /dev/null +++ b/package/ulogd/files/ulogd.default @@ -0,0 +1 @@ +OPTIONS="-d"
\ No newline at end of file diff --git a/package/ulogd/files/ulogd.init b/package/ulogd/files/ulogd.init new file mode 100644 index 000000000..d3863c5f2 --- /dev/null +++ b/package/ulogd/files/ulogd.init @@ -0,0 +1,17 @@ +#!/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 $? |