svn commit: r343640 - stable/12/sbin/devd

Andriy Voskoboinyk avos at FreeBSD.org
Fri Feb 1 03:01:20 UTC 2019


Author: avos
Date: Fri Feb  1 03:01:19 2019
New Revision: 343640
URL: https://svnweb.freebsd.org/changeset/base/343640

Log:
  MFC r343497:
  Unbreak devd.conf(5) regex after r343249
  
  PR:		235239
  Submitted by:	Helge Oldach <freebsd at oldach.net>

Modified:
  stable/12/sbin/devd/devd.conf
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sbin/devd/devd.conf
==============================================================================
--- stable/12/sbin/devd/devd.conf	Fri Feb  1 02:43:13 2019	(r343639)
+++ stable/12/sbin/devd/devd.conf	Fri Feb  1 03:01:19 2019	(r343640)
@@ -42,7 +42,7 @@ options {
 #
 notify 0 {
 	match "system"		"IFNET";
-	match "subsystem"	"(?!usbus[0-9]+|?!wlan[0-9]+)";
+	match "subsystem"	"!(usbus|wlan)[0-9]+";
 	match "type"		"ATTACH";
 	action "/etc/pccard_ether $subsystem start";
 };


More information about the svn-src-stable mailing list