multipath-tools: Remove bad udev rules
authorPhillip Susi <psusi@cfl.rr.com>
Tue, 6 Dec 2011 16:12:58 +0000 (11:12 -0500)
committerChristophe Varoqui <christophe.varoqui@opensvc.com>
Tue, 6 Dec 2011 22:26:22 +0000 (23:26 +0100)
This sample udev rules file contains some rules relating to dmraid
that both should not be there and are broken anyhow.  They should
not be there because firstly, what is a dmraid rule doing in a
kpartx rule file, and secondly, dmraid already activates partitions
itself, so there is no need to run kpartx to do that.  The rule is
broken because it is matching on the DM_UUID starting with "dmraid-",
but this comparison is case sensitive, and it actually starts with
"DMRAID-".

Signed-off-by: Phillip Susi <psusi@cfl.rr.com>
kpartx/kpartx.rules

index 4c23dec2d14568b5bc4e070d94cad0d082dfc5bf..64863a0a037a5ae2fc3714f7ccf30397d9ce50cf 100644 (file)
@@ -17,10 +17,6 @@ OPTIONS="link_priority=50"
 ENV{DM_UUID}=="mpath-*", \
        SYMLINK+="disk/by-id/$env{DM_TYPE}-$env{DM_NAME}"
 
-# Create persistent links for dmraid tables
-ENV{DM_UUID}=="dmraid-*", \
-        SYMLINK+="disk/by-id/$env{DM_TYPE}-$env{DM_NAME}"
-
 # Create persistent links for partitions
 ENV{DM_PART}=="?*", \
         SYMLINK+="disk/by-id/$env{DM_TYPE}-$env{DM_NAME}-part$env{DM_PART}"
@@ -28,8 +24,6 @@ ENV{DM_PART}=="?*", \
 # Create dm tables for partitions
 ENV{DM_STATE}=="ACTIVE", ENV{DM_UUID}=="mpath-*", \
         RUN+="/sbin/kpartx -u -p -part /dev/$name"
-ENV{DM_STATE}=="ACTIVE", ENV{DM_UUID}=="dmraid-*", \
-        RUN+="/sbin/kpartx -u -p -part /dev/$name"
 
 LABEL="kpartx_end"