udev: update dmsetup path

Debian has it in /sbin/dmsetup. Fedora has /sbin->/usr/sbin symlink, so
it should work on both.
This commit is contained in:
Marek Marczykowski-Górecki 2014-07-26 15:47:15 +02:00
parent 91766f9b5d
commit 35300b54ac

View File

@ -25,7 +25,7 @@ if [ -n "`ls -A /sys/$DEVPATH/holders 2> /dev/null`" ]; then
exit 0 exit 0
fi fi
# ... and used device-mapper devices # ... and used device-mapper devices
if [ -n "$DM_NAME" ] && /usr/sbin/dmsetup info "$DM_NAME" | grep -q "^Open count:.*[1-9]"; then if [ -n "$DM_NAME" ] && /sbin/dmsetup info "$DM_NAME" | grep -q "^Open count:.*[1-9]"; then
xs_remove xs_remove
exit 0 exit 0
fi fi