Allow teuthology's ssh support to use ssh-config sections like:
```
Host foobar.lab.example.com
HostName 192.168.76.206
```
This permits me to better use teuthology in my "lab" setup where I don't
have real dns entries for the test nodes.
Signed-off-by: John Mulligan <jmulligan@redhat.com>
opts = ssh_config.lookup(host)
if not key_filename and 'identityfile' in opts:
key_filename = opts['identityfile']
+ if 'hostname' in opts:
+ connect_args['hostname'] = opts['hostname']
if key_filename:
if not isinstance(key_filename, list):