mirror of
https://github.com/munki/munki.git
synced 2025-12-31 11:40:00 -06:00
10 lines
320 B
Bash
Executable File
10 lines
320 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# only do this if we are installing to current startup volume
|
|
if [ "$3" == "/" ]; then
|
|
#(re-)load our LaunchDaemon
|
|
/bin/launchctl unload /Library/LaunchDaemons/com.googlecode.munki.app_usage_monitor.plist
|
|
/bin/launchctl load /Library/LaunchDaemons/com.googlecode.munki.app_usage_monitor.plist
|
|
fi
|
|
|