tags 365225 patch
severity 365225 grave
Thanks

> AFAICT, the cause of this is a syntax error in usbmount.rules, which
> incorrectly uses KERNEL="..." rather than KERNEL="...".  (The former
> is an assignment, and almost certainly not what you want.)

I think what Aaron meant was that the expression should be KERNEL=="...",
the attached patch for usbmount.rules works for me.

Also, since this bugs renders usbmount unusable, I am bumping severity 
to grave.

Thanks,

-- 
Eric Evans
[EMAIL PROTECTED]
--- /etc/udev/usbmount.rules    2006-04-28 21:58:06.000000000 -0500
+++ /etc/udev/usbmount.rules    2006-04-28 21:51:10.000000000 -0500
@@ -1,6 +1,6 @@
 # Rules for USBmount
 
-KERNEL="sd*", BUS=="usb", ACTION=="add",    RUN+="/usr/share/usbmount/usbmount 
add"
-KERNEL="ub*", BUS=="usb", ACTION=="add",    RUN+="/usr/share/usbmount/usbmount 
add"
-KERNEL="sd*",             ACTION=="remove", RUN+="/usr/share/usbmount/usbmount 
remove"
-KERNEL="ub*",             ACTION=="remove", RUN+="/usr/share/usbmount/usbmount 
remove"
+KERNEL=="sd*", BUS=="usb", ACTION=="add",    
RUN+="/usr/share/usbmount/usbmount add"
+KERNEL=="ub*", BUS=="usb", ACTION=="add",    
RUN+="/usr/share/usbmount/usbmount add"
+KERNEL=="sd*",             ACTION=="remove", 
RUN+="/usr/share/usbmount/usbmount remove"
+KERNEL=="ub*",             ACTION=="remove", 
RUN+="/usr/share/usbmount/usbmount remove"

Attachment: signature.asc
Description: Digital signature

Reply via email to