udev-block-add-change: simplify a check

This commit is contained in:
Rusty Bird 2016-07-15 16:15:42 +00:00
parent 6b32378158
commit a032129b80
No known key found for this signature in database
GPG Key ID: 469D78F47AAF2ADF

View File

@ -86,11 +86,7 @@ fi
# the same time) # the same time)
for part in /sys$DEVPATH/$NAME*; do for part in /sys$DEVPATH/$NAME*; do
if [ -d $part ]; then if [ -d $part ]; then
if is_used $part; then if is_used $part || is_attached $part; then
xs_remove
exit 0
fi
if is_attached $part; then
xs_remove xs_remove
exit 0 exit 0
fi fi