summaryrefslogtreecommitdiff
path: root/morphlib/writeexts.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/writeexts.py')
-rw-r--r--morphlib/writeexts.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/morphlib/writeexts.py b/morphlib/writeexts.py
index aa185a2b..129b2bc4 100644
--- a/morphlib/writeexts.py
+++ b/morphlib/writeexts.py
@@ -604,16 +604,12 @@ class WriteExtension(cliapp.Application):
def check_ssh_connectivity(self, ssh_host):
try:
- output = cliapp.ssh_runcmd(ssh_host, ['echo', 'test'])
+ cliapp.ssh_runcmd(ssh_host, ['true'])
except cliapp.AppException as e:
logging.error("Error checking SSH connectivity: %s", str(e))
raise cliapp.AppException(
'Unable to SSH to %s: %s' % (ssh_host, e))
- if output.strip() != 'test':
- raise cliapp.AppException(
- 'Unexpected output from remote machine: %s' % output.strip())
-
def is_device(self, location):
try:
st = os.stat(location)