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 5FCE9138CEE for ; Wed, 17 Jun 2015 21:42:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E6A4E0712; Wed, 17 Jun 2015 21:42:56 +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 0685CE07B2 for ; Wed, 17 Jun 2015 21:42:55 +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 E5BAE340B37 for ; Wed, 17 Jun 2015 21:42:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15DB7A3A for ; Wed, 17 Jun 2015 21:42:49 +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: <1434577334.03c02c050df2ae3d91ec6428f024d7d4042ef077.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 X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 03c02c050df2ae3d91ec6428f024d7d4042ef077 X-VCS-Branch: master Date: Wed, 17 Jun 2015 21:42:49 +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: d4402e95-2179-40d7-b9c7-2150c038477d X-Archives-Hash: 87d927aa8d616e9d72bfca4c50af7cd4 commit: 03c02c050df2ae3d91ec6428f024d7d4042ef077 Author: Mike Gilbert gentoo org> AuthorDate: Wed Jun 17 20:36:49 2015 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Jun 17 21:42:14 2015 +0000 URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=03c02c05 udev: Remove workaround for redirecting stdio to /dev/null systemd-udevd was fixed upstream, making this hack unnecessary. init.d/udev | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/init.d/udev b/init.d/udev index 4b1147f..f286ad8 100644 --- a/init.d/udev +++ b/init.d/udev @@ -60,15 +60,10 @@ start_pre() echo "" >/proc/sys/kernel/hotplug fi - local stderr=/dev/null - if yesno "${udev_debug:-NO}"; then - command_args="${command_args} --debug" - stderr=/run/udevdebug.log + command_args="${command_args} --debug 2> /run/udevdebug.log" fi - command_args="${command_args} < /dev/null > /dev/null 2> ${stderr}" - return 0 }