From c2bf345bcb2261017c93b18822f564164da140db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sat, 29 Dec 2018 17:13:11 +0100 Subject: [PATCH] force ssh pty allocation --- eoptasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eoptasks.py b/eoptasks.py index fa9cba6..0471aee 100755 --- a/eoptasks.py +++ b/eoptasks.py @@ -68,7 +68,7 @@ class Server: return 'ssh %s' % self.name def cmd(self, cmd): - return 'ssh %s "%s"' % (self.name, cmd) + return 'ssh -t %s "%s"' % (self.name, cmd) def get_servers():