Hello,
I'm banging my head off the desk on this one. I've successfully deployed NoMAD Login and that works great, but the NoMAD part is where I'm having trouble. I uploaded the default plist for NoMAD from a test machine into Jamf, that seems to be deploying properly. Then I have a script to modify the plist;
!/bin/sh
AD_domain="domain"
Realm="domain"
Write default AD domain
defaults write com.trusourcelabs.NoMAD ADDomain -string "$AD_domain"
defaults write com.trusourcelabs.NoMAD KerberosRealm -string "$Realm"
defaults write com.trusourcelabs.NoMAD UseKeychain -bool "true"
defaults write com.trusourcelabs.NoMAD SignInWindowOnLaunch -bool "true"
defaults write com.trusourcelabs.NoMAD UPCAlert -bool "true"
defaults write com.trusourcelabs.NoMAD UseKeychainPrompt -bool "true"
After I apply this and restart the machine, I log in with my AD creds, but NoMAD auto signs in as my read only Jamf share service account instead of my AD account... I can't figure out why, or how this is possible.. Has anyone else had this issue?
I've wiped the machine and ran the test again with the same results.
Any ideas on how to fix this would be appreciated.