Bug 208343

Summary: syntax error in /etc/udev/rules.d/60-fuse.rules
Product: [Fedora] Fedora Reporter: Nalin Dahyabhai <nalin>
Component: fuseAssignee: Peter Lemenkov <lemenkov>
Status: CLOSED NEXTRELEASE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: medium    
Version: rawhideCC: adam, bikehead, extras-qa, fedora, gajownik, moneta.mace, ndbecker2, ron, stefan.hoelldampf, torsten
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2006-11-01 10:33:51 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

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