mirror of
https://github.com/munki/munki.git
synced 2026-01-07 23:20:00 -06:00
12 lines
420 B
Bash
Executable File
12 lines
420 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Replace any Managed Software Update.app bundle with a symlink to Managed
|
|
# Software Center.app
|
|
|
|
if [ -d "$3/Applications/Utilities/Managed Software Update.app" ] ; then
|
|
/bin/rm -r "$3/Applications/Utilities/Managed Software Update.app"
|
|
# make a symlink for the old MSU.app
|
|
/bin/ln -s "$3/Applications/Managed Software Center.app" \
|
|
"$3/Applications/Utilities/Managed Software Update.app"
|
|
fi
|