Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/udev-gentoo-scripts:master commit in: init.d/
Date: Mon, 01 Jun 2015 15:33:19
Message-Id: 1433172691.cf7ac2fb255ff122d9e57b5b145e71bb2e021c4b.williamh@gentoo
1 commit: cf7ac2fb255ff122d9e57b5b145e71bb2e021c4b
2 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
3 AuthorDate: Mon Jun 1 15:31:31 2015 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 1 15:31:31 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=cf7ac2fb
7
8 udev-settle: always return success
9
10 This is how earlier versions of the scripts behave, so we should not
11 break expectations.
12
13 init.d/udev-settle | 1 +
14 1 file changed, 1 insertion(+)
15
16 diff --git a/init.d/udev-settle b/init.d/udev-settle
17 index 4c640db..cc87a39 100644
18 --- a/init.d/udev-settle
19 +++ b/init.d/udev-settle
20 @@ -15,4 +15,5 @@ start()
21 ebegin "Waiting for uevents to be processed"
22 udevadm settle --timeout=${udev_settle_timeout:-60}
23 eend $?
24 + return 0
25 }