Fix spurious "h " in canonicalization list.

This commit is contained in:
2025-03-11 14:04:57 -04:00
parent 192c8b1abd
commit 035cb25209

View File

@ -3,13 +3,12 @@ rm -f ~/.ssh/search
if [ -e ${CSHENV_DIR}/ssh/ssh-search-domains ]
then
domains=`grep "^search" /etc/resolv.conf | cut -c 6- - | cat - ${CSHENV_DIR}/ssh/ssh-search-domains | xargs`
domains=`grep "^search" /etc/resolv.conf | cut -c 8- - | cat - ${CSHENV_DIR}/ssh/ssh-search-domains | xargs`
else
domains=`grep "^search" /etc/resolv.conf | cut -c 6- - | xargs`
domains=`grep "^search" /etc/resolv.conf | cut -c 8- - | xargs`
fi
if [ -z "${domains}" ] ; then exit 1; fi
echo ${domains}
printf "Host *\n\tCanonicalDomains ${domains}\n\tCanonicalizeHostname yes\n# v" > ~/.ssh/search
printf "im:ft=sshconfig" >> ~/.ssh/search