From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9297713835A for ; Wed, 5 Aug 2020 16:13:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C710FE0845; Wed, 5 Aug 2020 16:13:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AEEC2E0845 for ; Wed, 5 Aug 2020 16:13:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 96C4F34EF4D for ; Wed, 5 Aug 2020 16:13:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CFD4253 for ; Wed, 5 Aug 2020 16:13:37 +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: <1596643990.e1c5bed2a1581db97f3912eba2ae98a1122388df.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: e1c5bed2a1581db97f3912eba2ae98a1122388df X-VCS-Branch: master Date: Wed, 5 Aug 2020 16:13:37 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4780711b-a179-4192-8234-63590b50ce7e X-Archives-Hash: d25a04edd0bd28ad550811d1e24748b0 commit: e1c5bed2a1581db97f3912eba2ae98a1122388df Author: Kaarle Ritvanen datakunkku fi> AuthorDate: Sat Apr 11 18:08:42 2020 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Aug 5 16:13:10 2020 +0000 URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=e1c5bed2 udev-settle: fix timeout argument quoting empty value resulted in "Extraneous argument" error Signed-off-by: William Hubbs gentoo.org> init.d/udev-settle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/udev-settle b/init.d/udev-settle index f6e0707..a5ceb93 100644 --- a/init.d/udev-settle +++ b/init.d/udev-settle @@ -12,6 +12,6 @@ depend() { start() { ebegin "Waiting for uevents to be processed" udevadm settle \ - ${udev_settle_timeout:+--timeout=}"${udev_settle_timeout}" + ${udev_settle_timeout:+--timeout="${udev_settle_timeout}"} eend $? }