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