Sha256: f556954bf6e28883c6e02d9ba0f31fa47e04dbd3b9b4c4d34c5e892a3265a71b
Contents?: true
Size: 576 Bytes
Versions: 67
Compression:
Stored size: 576 Bytes
Contents
#!/usr/bin/env ruby require 'hybrid_platforms_conductor/executable' ssh_exec = 'ssh' executable = HybridPlatformsConductor::Executable.new(nodes_selection_options: false, parallel_options: false) do |opts| opts.on('-x', '--ssh-exec FILE_PATH', "Path to the SSH executable to be used. Useful to give default options (especially with GIT_SSH). Defaults to #{ssh_exec}.") do |file_path| ssh_exec = file_path end end actions_executor = executable.actions_executor executable.parse_options! executable.out actions_executor.connector(:ssh).ssh_config(ssh_exec: ssh_exec)
Version data entries
67 entries across 67 versions & 1 rubygems