blob: 22034551cdd552c06bd2332a7b4b13464c563730 (
plain) (
tree)
|
|
#!/bin/sh
# Check whether /etc/rc.d/rc.bluetooth is executable before starting
# the bluetooth subsystem for hotplugged bluetooth devices
[ -x /etc/rc.d/rc.bluetooth ] && exec /usr/sbin/bluetoothd --udev
exit 0
|