mirror of
https://github.com/google/santa.git
synced 2026-01-21 03:58:11 -05:00
27 lines
648 B
Bash
27 lines
648 B
Bash
#!/bin/bash
|
|
|
|
# Unload the kernel extension, santad, sync client
|
|
# If a user is logged in, also unload the GUI agent.
|
|
# If the target volume is not /, do nothing
|
|
|
|
[[ $3 != "/" ]] && exit 0
|
|
|
|
/bin/launchctl remove com.google.santad
|
|
|
|
sleep 1
|
|
|
|
/sbin/kextunload -b com.google.santa-driver >/dev/null 2>&1
|
|
|
|
# Remove cruft from old Santa versions
|
|
/bin/rm /usr/libexec/santad
|
|
/bin/rm /usr/sbin/santactl
|
|
/bin/launchctl remove com.google.santasync
|
|
/bin/rm /Library/LaunchDaemons/com.google.santasync.plist
|
|
|
|
sleep 1
|
|
|
|
user=$(/usr/bin/stat -f '%u' /dev/console)
|
|
[[ -n "$user" ]] && /bin/launchctl asuser ${user} /bin/launchctl remove com.google.santagui
|
|
|
|
exit 0
|