20 lines
356 B
Plaintext
20 lines
356 B
Plaintext
# $FreeBSD$
|
|
#
|
|
# Hyper-V specific events
|
|
|
|
notify 10 {
|
|
match "system" "DEVFS";
|
|
match "subsystem" "CDEV";
|
|
match "type" "CREATE";
|
|
match "cdev" "hv_kvp_dev";
|
|
action "/usr/sbin/hv_kvp_daemon";
|
|
};
|
|
|
|
notify 10 {
|
|
match "system" "DEVFS";
|
|
match "subsystem" "CDEV";
|
|
match "type" "DESTROY";
|
|
match "cdev" "hv_kvp_dev";
|
|
action "pkill -x hv_kvp_daemon";
|
|
};
|