blob: 9280f93bac8931476802dd719cf8585663095fb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez/files/bluetooth-init.d-r1,v 1.1 2012/01/09 23:01:55 pacho Exp $
depend() {
after coldplug
need dbus localmount hostname
}
start() {
ebegin "Udev coldplug of bluetooth devices"
udevadm trigger --subsystem-match=bluetooth --action=add
eend $?
}
stop() {
return 0
}
|