blob: c42cfa1470c543f7f96f9b34633772d272b5d318 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
#
# Start/stop the Bluetooth daemons
#
. /etc/rc.conf
. /etc/rc.d/functions
[ -f /etc/conf.d/bluetooth ] && . /etc/conf.d/bluetooth
svwaitup -s 3 /var/service/bluetoothd || exit 1
stat_runit "Starting BlueZ Bluetooth dial-up networking daemon"
exec /usr/bin/dund -n -s
|