svn commit: r329194 - head/etc/devd

Hans Petter Selasky hselasky at FreeBSD.org
Tue Feb 13 08:10:17 UTC 2018


Author: hselasky
Date: Tue Feb 13 08:10:17 2018
New Revision: 329194
URL: https://svnweb.freebsd.org/changeset/base/329194

Log:
  Add missing semicolon to not break devd during system startup.

Modified:
  head/etc/devd/devmatch.conf

Modified: head/etc/devd/devmatch.conf
==============================================================================
--- head/etc/devd/devmatch.conf	Tue Feb 13 06:36:27 2018	(r329193)
+++ head/etc/devd/devmatch.conf	Tue Feb 13 08:10:17 2018	(r329194)
@@ -9,12 +9,12 @@
 #
 # Generic NOMATCH event
 nomatch 100 {
-	action "service devmatch start"
+	action "service devmatch start";
 };
 
 # Add the following to devd.conf to prevent this from running:
 # 	nomatch 1000 {
-#		action "true"
+#		action "true";
 #	};
 # it replaces the generic event with one of higher priority that
 # does nothing. You can also set 'devmatch_enable=NO' in /etc/rc.conf


More information about the svn-src-head mailing list