Jamfhelper’s delay option in 9.97

Munkeee
New Contributor III

I updated my dev environment to 9.97 and noticed that the -showDelayOptions of jamfhelper in my scripts are not getting responses back.cddb8329bd9045fe97b2d46a12c1289a

In the example, you’ll see response of “0” as the result, this is 9.97. The bottom is after reverting back to 9.96, and the response is passed.

Has anyone else noticed this behavior?

2 REPLIES 2

iJake
Valued Contributor

Wrap the jamfhelper command as a variable and get the result of that.

result=$(/Library/Application Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper YADA YADA)
echo $result

Munkeee
New Contributor III

I tried that. It seems to be limited to Perl for what I can find. I tried a test with Shell and Ruby and it worked fine, but the new binary version seems to mess with Perl. I’ll dig some more.