mirror of
https://github.com/munki/munki.git
synced 2026-01-01 20:20:19 -06:00
13 lines
234 B
Bash
Executable File
13 lines
234 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$3" != "/" ] ; then
|
|
# can only install Rosetta to the current startup disk
|
|
exit 0
|
|
fi
|
|
|
|
arch=$(/usr/bin/arch)
|
|
|
|
if [ "$arch" = "arm64" ]; then
|
|
/usr/sbin/softwareupdate --install-rosetta --agree-to-license
|
|
fi
|