]> git.pld-linux.org Git - packages/bluez-utils.git/blame - bluez-utils.init
- killed my previous bogus "fixes"
[packages/bluez-utils.git] / bluez-utils.init
CommitLineData
967b575d
JB
1#!/bin/sh
2#
3# bluetooth Bluetooth subsystem starting and stopping
4#
79f13a51 5# chkconfig: 345 25 90
967b575d
JB
6#
7# description: Bluetooth subsystem
8#
9# $Id$
10
11
12# Source function library
13. /etc/rc.d/init.d/functions
14
15UART_CONF="/etc/bluetooth/uart"
16[ -f /etc/sysconfig/bluetooth ] && . /etc/sysconfig/bluetooth
17
18if [ "$UART_CONF" != "no" -a ! -f "$UART_CONF" ]; then
221d00b8 19 UART_CONF="no"
967b575d
JB
20fi
21
22# See how we were called.
23case "$1" in
24 start)
25 # Check if the service is already running?
26 if [ ! -f /var/lock/subsys/bluetooth ]; then
27 # show "Starting %s service" Bluetooth
28 msg_starting Bluetooth
29 if [ -f /usr/sbin/hciattach -a "$UART_CONF" != "no" ]; then
221d00b8 30 grep -v '^#' $UART_CONF | while read i; do
31 /usr/sbin/hciattach $i
32 done
967b575d
JB
33 fi
34 daemon /usr/sbin/hcid -f /etc/bluetooth/hcid.conf
35 RETVAL=$?
36 if [ $RETVAL -ne 0 ]; then
221d00b8 37 killproc hciattach >/dev/null 2>&1
967b575d 38 elif [ -x /usr/sbin/sdpd ]; then
221d00b8 39 msg_starting "Bluetooth SDP"
40 daemon /usr/sbin/sdpd
41 RETVAL=$?
42 if [ $RETVAL -ne 0 ]; then
43 killproc hcid >/dev/null 2>&1
44 if [ "$UART_CONF" != "no" ]; then
45 killproc hciattach >/dev/null 2>&1
46 fi
967b575d 47 fi
967b575d
JB
48 fi
49 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/bluetooth
50 else
51 # show "%s service is already running." Bluetooth
52 msg_already_running Bluetooth
53 exit 1
54 fi
221d00b8 55 ;;
967b575d
JB
56 stop)
57 if [ -f /var/lock/subsys/bluetooth ]; then
58 if [ -x /usr/sbin/sdpd ]; then
221d00b8 59 msg_stopping "Bluetooth SDP"
60 killproc sdpd
967b575d
JB
61 fi
62 # show "Stopping %s service" Bluetooth
63 msg_stopping Bluetooth
64 killproc hcid
65 RETVAL=$?
66 if [ "$UART_CONF" != "no" ]; then
221d00b8 67 killproc hciattach >/dev/null 2>&1
967b575d
JB
68 fi
69 rm -f /var/lock/subsys/bluetooth
70 else
71 # show "%s service is not running." Bluetooth
72 msg_not_running Bluetooth
73 exit 1
74 fi
75 ;;
76 restart)
77 $0 stop
78 $0 start
79 ;;
80 reload)
81 if [ -f /var/lock/subsys/bluetooth ]; then
82 # show "Reload %s service" Bluetooth
83 msg_reloading Bluetooth
84 killproc hcid -HUP
85 RETVAL=$?
86 else
87 # show "%s service is not running." Bluetooth
88 msg_not_running Bluetooth
89 RETVAL=1
90 fi
91 ;;
92 force-reload)
79f13a51 93 # if program allows reloading without stopping
967b575d
JB
94 $0 reload
95 ;;
96 status)
97 status hcid
98 RETVAL=$?
79f13a51 99 ;;
967b575d 100 *)
79f13a51 101 # show "Usage: %s {start|stop|restart|reload|force-reload|status}"
102 msg_usage "$0 {start|stop|restart|reload|force-reload|status}"
103 exit 1
967b575d
JB
104esac
105
106exit $RETVAL
107
108# This must be last line !
109# vi:syntax=sh:tw=78:ts=8:sw=4
This page took 0.040372 seconds and 4 git commands to generate.