Skip to content

Instantly share code, notes, and snippets.

@jacobsalmela
Created August 6, 2014 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jacobsalmela/0d6ce2a1145ff63b6c63 to your computer and use it in GitHub Desktop.
Save jacobsalmela/0d6ce2a1145ff63b6c63 to your computer and use it in GitHub Desktop.
Extension Attribute to check if the root volume is named Macintosh HD
#!/bin/bash
volumeName=$(diskutil info / | awk '/Volume Name/ {print substr ($0, index ($0,$3))}')
if [ "$volumeName" != "Macintosh HD" ];then
echo "<result>Incorrect</result>"
else
echo "<result>Correct</result>"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment