SSH script?
I've followed the wiki to make an instaDMG image, and I think I've got most everything worked out, except for some SSH problems.
After I image the machine, our deploy account isn't functioning. I can sign in with the account locally, so I know it's there, but I can't push software or anything remotely. This prevents me from running inventory updates, software updates, software deployments, etc. When I try and do anything updates remotely the logs list Authenticating... 3x then exits out.
I think it has to do with the following in the firstboot.pkg file:
[code]
#Kerberos-Enabled SSH Authentication. Also specifies which specific groups are allowed to ssh.
echo "Enable Kerberos SSH"
echo KerberosAuthentication yes >> /etc/sshd_config
echo KerberosOrLocalPasswd yes >> /etc/sshd_config
echo AllowGroups domain\admingrp >> /etc/sshd_config
echo AllowUsers adminact deployacct >> /etc/sshd_config
[/code]
Can someone kind of go over what i'm doing wrong?