chiark / gitweb /
rules: move OPTIONS to separate rule
authorKay Sievers <kay.sievers@vrfy.org>
Wed, 11 Feb 2009 20:54:43 +0000 (21:54 +0100)
committerKay Sievers <kay.sievers@vrfy.org>
Wed, 11 Feb 2009 20:54:43 +0000 (21:54 +0100)
A failing IMPORT+ match would prevent the OPTIONS+= action
from being applied.

rules/rules.d/60-persistent-storage.rules

index 8476f14ecf05ba4bfa0112549c8272997ef908b1..532b09b5eceb2c8e834d42e64fc6b6cf29708d04 100644 (file)
@@ -57,8 +57,11 @@ ENV{DEVTYPE}=="disk", KERNEL!="sd*|sr*", ATTR{removable}=="1", GOTO="persistent_
 # probe filesystem metadata of optical drives which have a media inserted
 KERNEL=="sr*", ENV{ID_CDROM_MEDIA_TRACK_COUNT}=="?*", IMPORT{program}="vol_id --export --skip-raid --offset=$env{ID_CDROM_MEDIA_SESSION_LAST_OFFSET} $tempnode"
 
-# probe filesystem metadata of disks, watch for future changes
-KERNEL!="sr*", IMPORT{program}="vol_id --export $tempnode", OPTIONS+="watch"
+# probe filesystem metadata of disks
+KERNEL!="sr*", IMPORT{program}="vol_id --export $tempnode"
+
+# watch for future changes
+KERNEL!="sr*", OPTIONS+="watch"
 
 # by-label/by-uuid links (filesystem metadata)
 ENV{ID_FS_USAGE}=="filesystem|other|crypto", ENV{ID_FS_UUID_ENC}=="?*", SYMLINK+="disk/by-uuid/$env{ID_FS_UUID_ENC}"