From cfe1898b91471c73e7d1811d71f9acd4356ff5a0 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 25 Oct 2019 16:03:24 -0500 Subject: [PATCH] mgr/ssh: python, not python3 python 2.x is okay too. Signed-off-by: Sage Weil --- src/pybind/mgr/ssh/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/ssh/module.py b/src/pybind/mgr/ssh/module.py index 9f6c0c3e9c8..570ae9879a3 100644 --- a/src/pybind/mgr/ssh/module.py +++ b/src/pybind/mgr/ssh/module.py @@ -375,7 +375,7 @@ class SSHOrchestrator(MgrModule, orchestrator.Orchestrator): out, err, code = remoto.process.check( conn, - ['/usr/bin/python3', '-u'], + ['/usr/bin/python', '-u'], stdin=script.encode('utf-8')) self.log.debug('exit code %s out %s err %s' % (code, out, err)) return out, code -- 2.39.5