| Index: scripts/run_on_remote_slaves.py
|
| diff --git a/scripts/run_on_local_slaves.py b/scripts/run_on_remote_slaves.py
|
| old mode 100755
|
| new mode 100644
|
| similarity index 73%
|
| copy from scripts/run_on_local_slaves.py
|
| copy to scripts/run_on_remote_slaves.py
|
| index dd8252952cff3b0b1d84b849e0bf432df032b086..855c15ed2778721184bfc792ebc9f93e0a6e39f9
|
| --- a/scripts/run_on_local_slaves.py
|
| +++ b/scripts/run_on_remote_slaves.py
|
| @@ -11,6 +11,6 @@ import run_cmd
|
|
|
|
|
| if '__main__' == __name__:
|
| - options = run_cmd.parse_args()
|
| - results = run_cmd.run_on_local_slaves(options.cmd)
|
| + options = run_cmd.parse_args(positional_args=['host'])
|
| + results = run_cmd.run_on_remote_slaves(options.host, options.cmd)
|
| results.print_results(pretty=options.pretty)
|
|
|