svn commit: r343497 - head/sbin/devd

Andriy Voskoboinyk avos at FreeBSD.org
Sun Jan 27 15:29:59 UTC 2019


Author: avos
Date: Sun Jan 27 15:29:58 2019
New Revision: 343497
URL: https://svnweb.freebsd.org/changeset/base/343497

Log:
  devd.conf(5): simplify regex
  
  Submitted by:	Helge Oldach <freebsd at oldach.net>
  MFC after:	5 days

Modified:
  head/sbin/devd/devd.conf

Modified: head/sbin/devd/devd.conf
==============================================================================
--- head/sbin/devd/devd.conf	Sun Jan 27 15:19:28 2019	(r343496)
+++ head/sbin/devd/devd.conf	Sun Jan 27 15:29:58 2019	(r343497)
@@ -43,7 +43,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-head mailing list