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 373FB1381F3 for ; Mon, 15 Apr 2013 15:54:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89660E0A65; Mon, 15 Apr 2013 15:54:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 14D87E0A65 for ; Mon, 15 Apr 2013 15:54:05 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2A3CF33DC7B for ; Mon, 15 Apr 2013 15:54:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B2ACFE439F for ; Mon, 15 Apr 2013 15:54:02 +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: <1366040973.03764dc66785f29f9ee64e51be5b40131ec815fa.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: 03764dc66785f29f9ee64e51be5b40131ec815fa X-VCS-Branch: master Date: Mon, 15 Apr 2013 15:54:02 +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: 107796c7-f1c2-469c-b371-b0ea26479de4 X-Archives-Hash: e31a80b2b71a4d9ea3810839e851c315 commit: 03764dc66785f29f9ee64e51be5b40131ec815fa Author: Lars Wendler gentoo org> AuthorDate: Mon Apr 15 15:15:28 2013 +0000 Commit: William Hubbs gentoo org> CommitDate: Mon Apr 15 15:49:33 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=03764dc6 Add net devices when coldplugging is disabled This allows the predictable interface names to work when coldplugging is disabled. X-Gentoo-Bug: 465248 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=465248 --- init.d/udev | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/init.d/udev b/init.d/udev index 0e6aee6..0e9abfe 100644 --- a/init.d/udev +++ b/init.d/udev @@ -105,6 +105,7 @@ populate_dev() if ! yesno ${rc_coldplug:-${RC_COLDPLUG:-yes}}; then einfo "Setting /dev permissions and symbolic links" udevadm trigger --attr-match=dev --action=add + udevadm trigger --subsystem-match=net --action=add ewarn "Skipping udev coldplug sequence" return 0 fi