fix ssh name check

Šī revīzija ir iekļauta:
Ian Beringer
2015-02-01 21:42:12 +01:00
vecāks f46eb195d3
revīzija 1d9541fb2c
+1 -1
Parādīt failu
@@ -107,7 +107,7 @@ def check_service(i, service, env):
running = True running = True
except OSError as e: 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()))) output.print_error("%s is not running (%s). (Should be running on port %s)" % (service['name'], str(e), str(get_ssh_port())))
else: else:
output.print_error("%s is not running (%s)." % (service['name'], str(e))) output.print_error("%s is not running (%s)." % (service['name'], str(e)))