JAMF Pro v9.93
OSX 10.11.6
Adobe CS5.5 (Ps, Ai, Id)
AAMEE 2.1
Hi all,
I've already viewed the following discussions, but my issue is different.
https://www.jamf.com/jamf-nation/discussions/14131/
https://www.jamf.com/jamf-nation/discussions/5576/
https://www.jamf.com/jamf-nation/discussions/9919/
I should mention that the DMG/PKG and installer script do actually work... about half the time. But sometimes it fails, even though I created the PKG with AAMEE and I told it to ignore conflicting processes. Anyway, that's not really why I'm writing this...
In my case, the big problem is that after the installer fails, the return code is zero (0) indicating the installer succeeded. This is a huge problem because it causes my (modified) installPKGfromDMG.sh script to delete the cached installer dmg... And just getting that 3GB file cached on 40 computers is quite time consuming, so once it is on the target, I don't want it being deleted unless I know the installation is successful.
#!/bin/sh
#stuff
#other stuff
/usr/local/bin/jamf install -path "$mountVolume" -package "$packageName"
if [ $? == 0 ]; then
# do stuff
I don't want to babysit every deployment, kinda defeats the purpose of buying JAMF Pro.
Has anyone else seen this behavior of the installer?
