From: Zack Cerza Date: Wed, 7 May 2014 18:36:24 +0000 (-0500) Subject: Use 'true' instead of 'echo online' X-Git-Tag: 1.1.0~1473 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=429553053fec685b8d9cda310ca89758e3a84c17;p=teuthology.git Use 'true' instead of 'echo online' Signed-off-by: Zack Cerza --- diff --git a/teuthology/orchestra/remote.py b/teuthology/orchestra/remote.py index 8a983b643e..ce1a4bce18 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()