Last active
April 8, 2020 00:14
-
-
Save grahampugh/9955fdcd2079f676ab47 to your computer and use it in GitHub Desktop.
deleteparentlvg.sh
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/sh | |
SCRIPT_NAME=`basename "${0}"` | |
VERSION=1.1 | |
SYS_VERS=`sw_vers -productVersion | awk -F. '{ print $2 }'` | |
if [ ${SYS_VERS} -lt 7 ] | |
then | |
echo "This script requires OS X 10.7 or later!" >>/dev/stderr | |
exit 1 | |
fi | |
if [ -z "${1}" ] | |
then | |
echo "Usage: ${SCRIPT_NAME} disk<ID>" >>/dev/stderr | |
echo "Example: ${SCRIPT_NAME} disk0" >>/dev/stderr | |
exit 1 | |
fi | |
TARGET_DEVICE=`basename "${1}"` | |
LV_NAME=`diskutil cs list | grep "Volume Name:" | sed -e s/"Volume Name:"// -e s/"^ *"//` | |
if [ -n "${LV_NAME}" ] | |
then | |
diskutil umount force "${LV_NAME}" | |
fi | |
PV_UUIDS=`diskutil cs list | grep "Physical Volume" | sed -e "s/^.* //"` | |
for PV_UUID in ${PV_UUIDS} | |
do | |
DEVICE=`diskutil cs info ${PV_UUID} | grep "Device Identifier:" | sed -e "s/.*disk/disk/"` | |
if [ "${DEVICE%s*}" = "${TARGET_DEVICE}" ] | |
then | |
PVG_UUID=`diskutil cs info ${PV_UUID} | grep "Parent LVG UUID" | sed -e "s/^.* //"` | |
diskutil cs delete ${PVG_UUID} | |
if [ ${?} -ne 0 ] | |
then | |
echo "RuntimeAbortScript" | |
exit 1 | |
fi | |
fi | |
done | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment