mirror of
https://github.com/google/santa.git
synced 2026-01-15 01:08:12 -05:00
Add santametricservice and basic metrics to Santad. This PR adds the santametricservice, and adds basic metrics to santad. It also updates the SNTMetricSet to have and updates packaging scripts to include the santametricservice (aka metric service) in the final bundle. Co-authored-by: Russell Hancox <russellhancox@users.noreply.github.com>
33 lines
989 B
Bash
33 lines
989 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 || true
|
|
/bin/launchctl remove com.google.santa.bundleservice || true
|
|
/bin/launchctl remove com.google.santa.metricservice || true
|
|
|
|
/bin/sleep 1
|
|
|
|
/sbin/kextunload -b com.google.santa-driver >/dev/null 2>&1 || true
|
|
|
|
# Remove cruft from old Santa versions
|
|
/bin/rm -f /usr/libexec/santad
|
|
/bin/rm -f /usr/sbin/santactl
|
|
/bin/launchctl remove com.google.santasync
|
|
/bin/rm -f /Library/LaunchDaemons/com.google.santasync.plist
|
|
/bin/rm -rf /Applications/Santa.app
|
|
/bin/rm -rf /Library/Extensions/santa-driver.kext
|
|
|
|
/bin/sleep 1
|
|
|
|
GUI_USER=$(/usr/bin/stat -f '%u' /dev/console)
|
|
[[ -z "${GUI_USER}" ]] && exit 0
|
|
|
|
/bin/launchctl asuser "${GUI_USER}" /bin/launchctl remove com.google.santagui
|
|
/bin/launchctl asuser "${GUI_USER}" /bin/launchctl remove com.google.santa
|
|
exit 0
|