65cceb42c2
Copy from Base:System/bluez based on submit request 21889 from user seife OBS-URL: https://build.opensuse.org/request/show/21889 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/bluez?expand=0&rev=42
10 lines
187 B
Bash
10 lines
187 B
Bash
#!/bin/sh
|
|
BLUETOOTH_CONFIG=/etc/sysconfig/bluetooth
|
|
test -r $BLUETOOTH_CONFIG && . $BLUETOOTH_CONFIG
|
|
|
|
if [ "$START_BLUETOOTHD" = "no" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
exec /usr/sbin/bluetoothd --udev
|