Details
-
Task
-
Resolution: Fixed
-
Major - P3
-
None
-
None
-
Fully Compatible
-
TIG 2017-10-02
Description
The file buildscripts/remote_operations.py will invoke a remote shell in the shell method via the ssh command as
cmd = "ssh {} {} /bin/bash -c \"{}'{}'\"".format(
|
self.ssh_options,
|
self.user_host,
|
dollar,
|
operation_param)
|
It should support a new option to specify which remote shell to use:
cmd = "ssh {} {} {} -c \"{}'{}'\"".format(
|
self.ssh_options,
|
self.user_host,
|
self.shell_binary,
|
dollar,
|
operation_param)
|
New tests should be added to buildscripts/tests/test_remote_operations.py
Attachments
Issue Links
- is depended on by
-
SERVER-29816 Powercycle test script
-
- Closed
-