Skip to content

Instantly share code, notes, and snippets.

@jcpowermac
Created December 11, 2013 17:34
Show Gist options
  • Save jcpowermac/7914853 to your computer and use it in GitHub Desktop.
Save jcpowermac/7914853 to your computer and use it in GitHub Desktop.
Detached LUN Fix
naa=`esxcli storage core device detached list | awk 'NR > 2 {print $1}'`
for n in $naa ; do
`esxcli storage core device detached remove -d $n`
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment