Skip to content

Instantly share code, notes, and snippets.

@jacobsalmela
Created August 6, 2014 15:42
Show Gist options
  • Select an option

  • Save jacobsalmela/0d6ce2a1145ff63b6c63 to your computer and use it in GitHub Desktop.

Select an option

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