Remove -u option for debug.

This commit is contained in:
Slawomir Wojciech Wojtczak (vermaden) 2013-03-05 13:18:18 +01:00
parent 1adcee4686
commit 1db4bf70e4
1 changed files with 2 additions and 2 deletions

View File

@ -2,13 +2,13 @@ notify 200 {
match "system" "DEVFS";
match "type" "CREATE";
match "cdev" "(da|mmcsd)[0-9]+";
action "/usr/local/sbin/automount $cdev attach >> /root/DEBUG.$cdev.attach 2>&1";
action "/bin/sh -xe /usr/local/sbin/automount $cdev attach >> /root/DEBUG.$cdev.attach 2>&1";
};
notify 200 {
match "system" "DEVFS";
match "type" "DESTROY";
match "cdev" "(da|mmcsd)[0-9]+";
action "/usr/local/sbin/automount $cdev detach >> /root/DEBUG.$cdev.detach 2>&1";
action "/bin/sh -xe /usr/local/sbin/automount $cdev detach >> /root/DEBUG.$cdev.detach 2>&1";
};