blob: 7a924372fa5f5e77659b6957e013b6169f71ef9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
#
# Start/stop the Bluetooth daemons
#
. /etc/rc.conf
. /etc/rc.d/functions
[ -f /etc/conf.d/bluetooth ] && . /etc/conf.d/bluetooth
stat_runit "Starting bluetooth subsystem:"
exec /usr/sbin/bluetoothd -n
|