Posted on 02-01-2024 10:19 AM
I am running into an issue with my company's Mac's not launching the application nomad version 1.2.2.
I have tried removing and did a clean reinstall. Reinstalled Rosetta. Also tried launching thru terminal. Is this not compatible with Sonoma?
I have attached the error I see when attempting to run with Terminal.
zsh: illegal hardware instruction /Applications/NoMAD.app/Contents/MacOS/NoMAD -v
Posted on 02-01-2024 11:20 AM
Considering NoMac is fully end of life, I recommend removing it and finding another tool. Apples SSO Extension works well for password Maintenace.
Kerberos_Single_Sign_on_Extension_User_Guide_en-GB (apple.com)
Posted on 02-05-2024 07:49 AM
NoMAD is unsupported and not 100% standards compliant. KSSO is supported by Apple as part of macOS (even if the documentation is somewhat lacking) and works great.
Building an EA off these was useful during my org's validation and migration:
# domain
domain=$(/usr/bin/app-sso -l -j | awk '/"/ { print substr($1, 2, length($1) - 2) }')
# user_name
user=$(/usr/bin/app-sso -i $domain -j | awk '/user_name/ { print substr($NF, 2, length($NF) - 3) }')
echo "<result>${user}</result>"