Date: Tue, 13 Feb 2018 08:10:17 +0000 (UTC) From: Hans Petter Selasky <hselasky@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r329194 - head/etc/devd Message-ID: <201802130810.w1D8AHqW010073@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802130810.w1D8AHqW010073>