Openwrt/openwrt/package/frickin/files/frickin.init
Nicolas Thill ba6e8564e4 Add frickin package
SVN-Revision: 1042
2005-05-24 01:55:36 +00:00

17 lines
174 B
Bash

#!/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 $?