aports/main/bluez/bluetooth.initd
Alan Diwix a80812f764 main/bluez: use after instead of needs on udev-postmount
need keyword causes hard dependency on udev-postmount service, that is a
problem since the default system does not use eudev, after keyword only
affects ordering of startup and does not introduce hard dependency.
2021-08-05 10:10:58 +00:00

14 lines
242 B
Bash

#!/sbin/openrc-run
name="Bluetooth"
command="/usr/lib/bluetooth/bluetoothd"
pidfile="/var/run/bluetoothd.pid"
start_stop_daemon_args="--background --make-pidfile"
depend() {
after coldplug udev-postmount
need dbus localmount hostname
}