summaryrefslogtreecommitdiff
path: root/user/eudev/udev-settle.initd
blob: c495769e6b5e099c0134e45eafed695c88ac1668 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/sbin/openrc-run
# Copyright 2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

depend()
{
	need udev
	after udev-trigger
	provide dev-settle
	keyword -lxc -systemd-nspawn -vserver
}

start()
{
	ebegin "Waiting for uevents to be processed"
	udevadm settle \
		${udev_settle_timeout:+--timeout=}$udev_settle_timeout
	eend $?
}