Bug 208343 - syntax error in /etc/udev/rules.d/60-fuse.rules
Summary: syntax error in /etc/udev/rules.d/60-fuse.rules
Keywords:
Status: CLOSED NEXTRELEASE
Alias: None
Product: Fedora
Classification: Fedora
Component: fuse
Version: rawhide
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Peter Lemenkov
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
: 209444 212374 212443 (view as bug list)
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2006-09-27 22:08 UTC by Nalin Dahyabhai
Modified: 2009-06-27 15:45 UTC (History)
10 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2006-11-01 10:33:51 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Nalin Dahyabhai 2006-09-27 22:08:29 UTC
Description of problem:
The udev rules file for fuse seems to have a syntax error.

Version-Release number of selected component (if applicable):
fuse-2.5.3-3.fc6

How reproducible:
Always

Steps to Reproduce:
1.
2.
3.
  
Actual results:
 Sep 27 18:03:09 rapier udevd[388]: add_to_rules: invalid rule
'/etc/udev/rules.d/60-fuse.rules:1'

Expected results:
 No error message from udev.

Additional info:
It looks like there's a missing comma between the OWNER and GROUP bits:
  KERNEL="fuse", NAME="%k", MODE="0660",OWNER="root" GROUP="fuse"
should be
  KERNEL="fuse", NAME="%k", MODE="0660",OWNER="root", GROUP="fuse"

Comment 1 Peter Lemenkov 2006-10-07 06:39:21 UTC
*** Bug 209444 has been marked as a duplicate of this bug. ***

Comment 2 Torsten Rausche 2006-10-21 10:17:57 UTC
I think udev (at least version 095-14) is more happy with:

  KERNEL=="fuse", NAME=="%k", MODE=="0660", OWNER=="root", GROUP=="fuse"

Note the == instead of the single =.

Comment 3 Dawid Gajownik 2006-10-29 15:03:18 UTC
*** Bug 212374 has been marked as a duplicate of this bug. ***

Comment 4 Dawid Gajownik 2006-10-29 15:04:33 UTC
*** Bug 212443 has been marked as a duplicate of this bug. ***

Comment 5 Adam Goode 2006-10-29 18:24:46 UTC
Comment 2 is wrong, the correct rule should be:

  KERNEL=="fuse", MODE="0660", OWNER="root", GROUP="fuse"


Note the == for KERNEL, but = for everything else. This reads "When KERNEL
equals fuse, assign MODE 0660, OWNER root, GROUP fuse." Comment 2 had only
matches, no assignments, so the rule wouldn't have any effect.

See:
http://www.reactivated.net/writing_udev_rules.html

Comment 6 Peter Lemenkov 2006-10-31 15:30:01 UTC
Fixed.
Please update to version fuse-2.5.3-5


Note You need to log in before you can comment on or make changes to this bug.