Deleted Added
full compact
hyperv.conf (271696) hyperv.conf (272322)
1# $FreeBSD: head/etc/devd/hyperv.conf 271696 2014-09-17 02:32:22Z delphij $
1# $FreeBSD: stable/10/etc/devd/hyperv.conf 272322 2014-09-30 17:54:57Z delphij $
2#
3# Hyper-V specific events
4
5notify 10 {
6 match "system" "DEVFS";
7 match "subsystem" "CDEV";
8 match "type" "CREATE";
2#
3# Hyper-V specific events
4
5notify 10 {
6 match "system" "DEVFS";
7 match "subsystem" "CDEV";
8 match "type" "CREATE";
9 match "cdev" "/dev/hv_kvp_dev";
9 match "cdev" "hv_kvp_dev";
10 action "/usr/sbin/hv_kvp_daemon";
11};
12
13notify 10 {
14 match "system" "DEVFS";
15 match "subsystem" "CDEV";
16 match "type" "DESTROY";
10 action "/usr/sbin/hv_kvp_daemon";
11};
12
13notify 10 {
14 match "system" "DEVFS";
15 match "subsystem" "CDEV";
16 match "type" "DESTROY";
17 match "cdev" "/dev/hv_kvp_dev";
17 match "cdev" "hv_kvp_dev";
18 action "pkill -x hv_kvp_daemon";
19};
18 action "pkill -x hv_kvp_daemon";
19};