mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-18 06:12:35 +01:00
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.
14 lines
242 B
Bash
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
|
|
}
|
|
|