Hi All,
I am testing an upgrade to macOS 10.15 with the upgrade script from @Rosko :
https://github.com/kc9wwh/macOSUpgrade
I'm having the following issue. When running the policy (Script) it calls the download policy by a custom trigger. This works as expected.
After downloading it installs the macOS installer in /Applications:
Log said: "Successfully installed Install macOS Catalina 10.15.5.pkg"
But it also says : " macOS Installer Downloaded 3 Times - Checksum is Not Valid"
This is part of the script which is mentioning the Checksum part:
## MD5 Checksum of InstallESD.dmg – Use Parameter 7 in the JSS.
## Parameter Label: installESD Checksum (optional)
## This variable is OPTIONAL
## Leave the variable BLANK if you do NOT want to verify the checksum (DEFAULT)
## Example Command: /sbin/md5 /Applications/Install macOS High Sierra.app/Contents/SharedSupport/InstallESD.dmg
## Example MD5 Checksum: b15b9db3a90f9ae8a9df0f81741efa2b
installESDChecksum="$7"
## Valid Checksum? O (Default) for false, 1 for true.
validChecksum=0
## Unsuccessful Download? 0 (Default) for false, 1 for true.
unsuccessfulDownload=0
It says " Leave the variable BLANK if you do NOT want to verify the checksum". I left this parameter blank. Why does it come with "Checksum is Not Valid" if it doesn't need to check for it?
