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 99BF913888F for ; Thu, 29 Oct 2015 16:36:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30738E0806; Thu, 29 Oct 2015 16:36:30 +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 CA17AE0806 for ; Thu, 29 Oct 2015 16:36:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 07131340B35 for ; Thu, 29 Oct 2015 16:36:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5DCA51A09 for ; Thu, 29 Oct 2015 16:36:25 +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: <1445449740.6cae41a4e63510cdcf3af1153d6e8300435e1838.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: etc/ X-VCS-Repository: proj/openrc X-VCS-Files: etc/rc.conf.in X-VCS-Directories: etc/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 6cae41a4e63510cdcf3af1153d6e8300435e1838 X-VCS-Branch: master Date: Thu, 29 Oct 2015 16:36:25 +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: 10df3c1a-c3e5-4c8d-86bd-6ae3d25c14c3 X-Archives-Hash: 8e449a37bf9ed32da73e6bef352be229 commit: 6cae41a4e63510cdcf3af1153d6e8300435e1838 Author: William Hubbs gmail com> AuthorDate: Wed Oct 21 17:49:00 2015 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Oct 21 17:49:00 2015 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=6cae41a4 etc/rc.conf: Clean up documentation for rc_hotplug X-Gentoo-Bug: 554540 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=554540 etc/rc.conf.in | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/etc/rc.conf.in b/etc/rc.conf.in index 1b78c88..3159165 100644 --- a/etc/rc.conf.in +++ b/etc/rc.conf.in @@ -29,17 +29,20 @@ # come up. #rc_depend_strict="YES" -# rc_hotplug is a list of services that we allow to be hotplugged. -# By default we do not allow hotplugging. +# rc_hotplug controls which services we allow to be hotplugged. # A hotplugged service is one started by a dynamic dev manager when a matching # hardware device is found. -# This service is intrinsically included in the boot runlevel. -# To disable services, prefix with a ! +# Hotplugged services appear in the "hotplugged" runlevel. +# If rc_hotplug is set to any value, we compare the name of this service +# to every pattern in the value, from left to right, and we allow the +# service to be hotplugged if it matches a pattern, or if it matches no +# patterns. Patterns can include shell wildcards. +# To disable services from being hotplugged, prefix patterns with "!". +#If rc_hotplug is not set or is empty, all hotplugging is disabled. # Example - rc_hotplug="net.wlan !net.*" -# This allows net.wlan and any service not matching net.* to be plugged. -# Example - rc_hotplug="*" -# This allows all services to be hotplugged -#rc_hotplug="*" +# This allows net.wlan and any service not matching net.* to be hotplugged. +# Example - rc_hotplug="!net.*" +# This allows services that do not match "net.*" to be hotplugged. # rc_logger launches a logging daemon to log the entire rc process to # /var/log/rc.log