Skip to content

Instantly share code, notes, and snippets.

@macmule
Created November 21, 2021 15:34
Show Gist options
  • Select an option

  • Save macmule/b31bd78df4452674f7593050805b7b83 to your computer and use it in GitHub Desktop.

Select an option

Save macmule/b31bd78df4452674f7593050805b7b83 to your computer and use it in GitHub Desktop.
#!/bin/sh
## postinstall
targetVolume=$3
## Delete the AutoCasperNBI installed Casper Imaging launch agent
rm -rf "$3"/Library/LaunchAgents/com.AutoCasperNBI.CasperImaging.plist
## If the launch agent exists after the above, error
if [ -f "$3"/Library/LaunchAgents/com.AutoCasperNBI.CasperImaging.plist ];
then
echo "Error: com.AutoCasperNBI.CasperImaging.plist not deleted…"
exit 1
else
echo "Success: com.AutoCasperNBI.CasperImaging.plist deleted…"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment