Skip to content

Instantly share code, notes, and snippets.

@seelengut
Created June 27, 2019 12:41
Show Gist options
  • Save seelengut/2bd2a9ba34d02bb543c637c022092808 to your computer and use it in GitHub Desktop.
Save seelengut/2bd2a9ba34d02bb543c637c022092808 to your computer and use it in GitHub Desktop.
While Pulse kext keeps crashing mac, run this script as sudo to reduce the risk of having such issue.
#!/bin/sh
while true; do
if kextstat | grep -si secure; then kextunload /Library/Extensions/PulseSecureFirewall.kext && date
fi
sleep 10
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment