From 429553053fec685b8d9cda310ca89758e3a84c17 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 7 May 2014 13:36:24 -0500 Subject: [PATCH] Use 'true' instead of 'echo online' Signed-off-by: Zack Cerza --- teuthology/orchestra/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/orchestra/remote.py b/teuthology/orchestra/remote.py index 8a983b643e837..ce1a4bce18ebf 100644 --- a/teuthology/orchestra/remote.py +++ b/teuthology/orchestra/remote.py @@ -79,7 +79,7 @@ class Remote(object): if self.ssh is None: return False try: - self.run(args="echo online") + self.run(args="true") except Exception: return False return self.ssh.get_transport().is_active() -- 2.39.5