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 68D2C138C9D for ; Mon, 1 Jun 2015 15:33:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 11B90E08BE; Mon, 1 Jun 2015 15:33:26 +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 C26ADE08BE for ; Mon, 1 Jun 2015 15:33:25 +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 1AB1C340D91 for ; Mon, 1 Jun 2015 15:33:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 07FE4A1B for ; Mon, 1 Jun 2015 15:33:16 +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: <1433172745.84aa1a5d5896e5883c7c3adb023f2b9d30537775.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-trigger X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 84aa1a5d5896e5883c7c3adb023f2b9d30537775 X-VCS-Branch: master Date: Mon, 1 Jun 2015 15:33:16 +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: 2cec4e75-2d88-45b1-b13a-b1c3cb8f728c X-Archives-Hash: 2ad36fe1c9a7dd214f32db9e6e2ea7e9 commit: 84aa1a5d5896e5883c7c3adb023f2b9d30537775 Author: William Hubbs gmail com> AuthorDate: Mon Jun 1 15:32:25 2015 +0000 Commit: William Hubbs gentoo org> CommitDate: Mon Jun 1 15:32:25 2015 +0000 URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=84aa1a5d udev-trigger: always return success This is how earlier versions of the scripts behaved, so we should not break expectations. init.d/udev-trigger | 1 + 1 file changed, 1 insertion(+) diff --git a/init.d/udev-trigger b/init.d/udev-trigger index d3f40e6..b67d597 100644 --- a/init.d/udev-trigger +++ b/init.d/udev-trigger @@ -88,4 +88,5 @@ start() udevadm trigger --type=subsystems --action=add udevadm trigger --type=devices --action=add eend $? + return 0 }