Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 May 2015 13:13:57 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r283226 - stable/10/etc
Message-ID:  <201505211313.t4LDDvNK092830@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: trasz
Date: Thu May 21 13:13:56 2015
New Revision: 283226
URL: https://svnweb.freebsd.org/changeset/base/283226

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

Modified:
  stable/10/etc/devd.conf
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/etc/devd.conf
==============================================================================
--- stable/10/etc/devd.conf	Thu May 21 13:11:48 2015	(r283225)
+++ stable/10/etc/devd.conf	Thu May 21 13:13:56 2015	(r283226)
@@ -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?201505211313.t4LDDvNK092830>