Skip to content

Instantly share code, notes, and snippets.

@olavmrk
Created December 11, 2013 13:28
Show Gist options
  • Save olavmrk/7910442 to your computer and use it in GitHub Desktop.
Save olavmrk/7910442 to your computer and use it in GitHub Desktop.
Script to resume suspended LVM volumes, due to Debian bug #659762: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=659762 The script must most likely be executed multiple times to recover all suspended volumes.
#!/bin/bash
dmsetup info | while IFS=: read NAME VALUE; do
# Trim leading and trailing whitespace from NAME and VALUE
NAME="$(echo "$NAME" | sed -e 's/^ *//g' -e 's/ *$//g')"
VALUE="$(echo "$VALUE" | sed -e 's/^ *//g' -e 's/ *$//g')"
if [ -z "$NAME" ]; then
continue
fi
if [ "$NAME" = "Name" ]; then
DEVNAME="$VALUE"
fi
if [ "$NAME" = "State" ]; then
if echo "$VALUE" | grep -q -F "SUSPENDED"; then
echo "Requesting resume of: $DEVNAME"
dmsetup resume "$DEVNAME" &
fi
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment