mirror of
git://slackware.nl/current.git
synced 2025-02-01 19:57:45 +01:00
8 lines
213 B
Bash
8 lines
213 B
Bash
|
#!/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
|
||
|
|