From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E491E138C9D for ; Mon, 1 Jun 2015 15:33:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B235E08B8; Mon, 1 Jun 2015 15:33:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 50323E08B8 for ; Mon, 1 Jun 2015 15:33:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 64EAC340D71 for ; Mon, 1 Jun 2015 15:33:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA0719EA for ; Mon, 1 Jun 2015 15:33:15 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1433172691.cf7ac2fb255ff122d9e57b5b145e71bb2e021c4b.williamh@gentoo> Subject: [gentoo-commits] proj/udev-gentoo-scripts:master commit in: init.d/ X-VCS-Repository: proj/udev-gentoo-scripts X-VCS-Files: init.d/udev-settle X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: cf7ac2fb255ff122d9e57b5b145e71bb2e021c4b X-VCS-Branch: master Date: Mon, 1 Jun 2015 15:33:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 03429c61-b1e3-41f8-b4a9-afd9e737d1d6 X-Archives-Hash: b7ad1701bfbaadadd428d2f6c13a0c87 commit: cf7ac2fb255ff122d9e57b5b145e71bb2e021c4b Author: William Hubbs gmail com> AuthorDate: Mon Jun 1 15:31:31 2015 +0000 Commit: William Hubbs gentoo org> CommitDate: Mon Jun 1 15:31:31 2015 +0000 URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=cf7ac2fb udev-settle: always return success This is how earlier versions of the scripts behave, so we should not break expectations. init.d/udev-settle | 1 + 1 file changed, 1 insertion(+) diff --git a/init.d/udev-settle b/init.d/udev-settle index 4c640db..cc87a39 100644 --- a/init.d/udev-settle +++ b/init.d/udev-settle @@ -15,4 +15,5 @@ start() ebegin "Waiting for uevents to be processed" udevadm settle --timeout=${udev_settle_timeout:-60} eend $? + return 0 }