mirror of
https://github.com/munki/munki.git
synced 2026-01-08 07:29:52 -06:00
22 lines
731 B
Bash
Executable File
22 lines
731 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Lovingly adapted from Per Olofsson
|
|
# https://github.com/MagerValp/Scripted-Mac-Package-Creation/blob/master/scripts/postinstall
|
|
|
|
export PATH=/usr/bin:/bin:/usr/sbin:/sbin
|
|
|
|
# Execute postinstall actions if we're installing on a live system.
|
|
# This is useful for loading launch daemons and agents.
|
|
if [ "$3" = "/" ]; then
|
|
|
|
# Run postinstall actions for root.
|
|
launchctl bootstrap system/ /Library/LaunchDaemons/com.googlecode.munki.appusaged.plist
|
|
|
|
# Run postinstall actions for all logged in users.
|
|
for uid in $(ps -axo uid,args | grep "/[F]inder.app/" | awk '{print $1}'); do
|
|
launchctl bootstrap gui/"$uid"/ /Library/LaunchAgents/com.googlecode.munki.app_usage_monitor.plist
|
|
done
|
|
|
|
fi
|
|
|
|
exit 0 |