fix ssh name check

This commit is contained in:
Ian Beringer 2015-02-01 21:42:12 +01:00
parent f46eb195d3
commit 1d9541fb2c
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ def check_service(i, service, env):
running = True
except OSError as e:
if service['name'] == 'ssh':
if service['name'] == 'SSH Login (ssh)':
output.print_error("%s is not running (%s). (Should be running on port %s)" % (service['name'], str(e), str(get_ssh_port())))
else:
output.print_error("%s is not running (%s)." % (service['name'], str(e)))