Created
December 11, 2013 13:28
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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