]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
Use 'true' instead of 'echo online'
authorZack Cerza <zack@cerza.org>
Wed, 7 May 2014 18:36:24 +0000 (13:36 -0500)
committerZack Cerza <zack@cerza.org>
Sat, 10 May 2014 14:10:22 +0000 (09:10 -0500)
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
teuthology/orchestra/remote.py

index 8a983b643e8371eb26b42d07732c777f934ef157..ce1a4bce18ebf80a293d956f202398b03230fd8e 100644 (file)
@@ -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()