hyperv.conf revision 271696
1271696Sdelphij# $FreeBSD: head/etc/devd/hyperv.conf 271696 2014-09-17 02:32:22Z delphij $
2271696Sdelphij#
3271696Sdelphij# Hyper-V specific events
4271696Sdelphij
5271696Sdelphijnotify 10 {
6271696Sdelphij	match "system"		"DEVFS";
7271696Sdelphij	match "subsystem"	"CDEV";
8271696Sdelphij	match "type"		"CREATE";
9271696Sdelphij	match "cdev"		"/dev/hv_kvp_dev";
10271696Sdelphij	action "/usr/sbin/hv_kvp_daemon";
11271696Sdelphij};
12271696Sdelphij
13271696Sdelphijnotify 10 {
14271696Sdelphij	match "system"		"DEVFS";
15271696Sdelphij	match "subsystem"	"CDEV";
16271696Sdelphij	match "type"		"DESTROY";
17271696Sdelphij	match "cdev"		"/dev/hv_kvp_dev";
18271696Sdelphij	action "pkill -x hv_kvp_daemon";
19271696Sdelphij};
20