15 lines
309 B
Plaintext
15 lines
309 B
Plaintext
notify 100 {
|
|
match "system" "DEVFS";
|
|
match "type" "CREATE";
|
|
match "cdev" "(da|mmcsd)[0-9]+";
|
|
action "/usr/local/sbin/automount $cdev attach";
|
|
};
|
|
|
|
notify 100 {
|
|
match "system" "DEVFS";
|
|
match "type" "DESTROY";
|
|
match "cdev" "(da|mmcsd)[0-9]+";
|
|
action "/usr/local/sbin/automount $cdev detach";
|
|
};
|
|
|