diff options
Diffstat (limited to 'package/bluez/files')
-rw-r--r-- | package/bluez/files/bluez.init | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/package/bluez/files/bluez.init b/package/bluez/files/bluez.init new file mode 100644 index 000000000..20c128ad0 --- /dev/null +++ b/package/bluez/files/bluez.init @@ -0,0 +1,26 @@ +#!/bin/sh +#FWINIT 90 +. /etc/rc.conf + +case $1 in +autostop) ;; +autostart) + test x"${bluez:-NO}" = x"NO" && exit 0 + exec sh $0 start + ;; +start) + bluetoothd + ;; +stop) + killall bluetoothd + ;; +restart) + sh $0 stop + sh $0 start + ;; +*) + echo "Usage: $0 {start | stop | restart}" + exit 1 + ;; +esac +exit $? |