Using the new AD system, and trying to regenerate ssh keys using ssh-user-config I find that I'm getting an error. I've traced the issue to a line in the /bin/ssh-user-config file:
pwdhome=$(awk -F: '{ if ( $3 == '${uid}' ) print $6; }' < ${SYSCONFDIR}/passwd) where we are apparently trying to parse the old passwd file (which I've renamed off to the side for testing quality). I can make this work for me right now with an ugly hack, but wanted to point it. $ ssh -V OpenSSH_6.7p1, OpenSSL 1.0.1j 15 Oct 2014 Dave