Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Jan 2015 11:18:46 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r277171 - head/etc
Message-ID:  <201501141118.t0EBIk0B028730@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: trasz
Date: Wed Jan 14 11:18:45 2015
New Revision: 277171
URL: https://svnweb.freebsd.org/changeset/base/277171

Log:
  Use newly added GEOM notifications to discard autofs caches.
  
  MFC after:	1 month
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/etc/devd.conf

Modified: head/etc/devd.conf
==============================================================================
--- head/etc/devd.conf	Wed Jan 14 11:15:57 2015	(r277170)
+++ head/etc/devd.conf	Wed Jan 14 11:18:45 2015	(r277171)
@@ -318,16 +318,11 @@ notify 0 {
 	action			"/usr/local/etc/rc.d/postgresql restart";
 };
 
-# Discard autofs caches, useful for the -media special map.  The one
-# second delay is for GEOM to finish tasting.
-#
-# XXX: We should probably have a devctl(4) event that fires after GEOM
-#      tasting.
-#
+# Discard autofs caches, useful for the -media special map.
 notify 100 {
-	match "system" "DEVFS";
-	match "cdev" "(da|mmcsd)[0-9]+";
-	action "sleep 1 && /usr/sbin/automount -c";
+	match "system" "GEOM";
+	match "subsystem" "DEV";
+	action "/usr/sbin/automount -c";
 };
 
 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501141118.t0EBIk0B028730>