| Index: scripts/run_on_all_slaves_on_all_hosts.py
|
| diff --git a/scripts/run_on_local_slaves.py b/scripts/run_on_all_slaves_on_all_hosts.py
|
| old mode 100755
|
| new mode 100644
|
| similarity index 72%
|
| copy from scripts/run_on_local_slaves.py
|
| copy to scripts/run_on_all_slaves_on_all_hosts.py
|
| index dd8252952cff3b0b1d84b849e0bf432df032b086..780db4dfd90644b9044ee2b1b3470f600add29ef
|
| --- a/scripts/run_on_local_slaves.py
|
| +++ b/scripts/run_on_all_slaves_on_all_hosts.py
|
| @@ -4,7 +4,7 @@
|
| # found in the LICENSE file.
|
|
|
|
|
| -"""Run a command on all buildslaves on this machine."""
|
| +"""Run a command on all slaves on all host machines."""
|
|
|
|
|
| import run_cmd
|
| @@ -12,5 +12,5 @@ import run_cmd
|
|
|
| if '__main__' == __name__:
|
| options = run_cmd.parse_args()
|
| - results = run_cmd.run_on_local_slaves(options.cmd)
|
| + results = run_cmd.run_on_all_slaves_on_all_hosts(options.cmd)
|
| results.print_results(pretty=options.pretty)
|
|
|