i2cssh 1.6.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +1 -0
- data/VERSION +1 -1
- data/bin/i2cssh +5 -0
- data/i2cssh.gemspec +1 -1
- metadata +3 -3
data/README.markdown
CHANGED
|
@@ -25,6 +25,7 @@ to all sessions.
|
|
|
25
25
|
-r, --rank Send LC_RANK with the host number as environment variable
|
|
26
26
|
-m, --machines a,b,c Comma-separated list of hosts
|
|
27
27
|
-s, --sleep SLEEP Number of seconds to sleep between creating SSH sessions
|
|
28
|
+
-X, --extra EXTRA_PARAM Additional ssh parameters (e.g. -Xi=myidentity.pem)
|
|
28
29
|
|
|
29
30
|
i2cssh will assume you want to connect to a cluster when only one host is given.
|
|
30
31
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.7.0
|
data/bin/i2cssh
CHANGED
|
@@ -156,6 +156,11 @@ optparse = OptionParser.new do |opts|
|
|
|
156
156
|
end
|
|
157
157
|
opts_from_cmdline[:direction] = d.to_sym
|
|
158
158
|
end
|
|
159
|
+
opts.on '-X', '--extra EXTRA_PARAM', String,
|
|
160
|
+
'Additional ssh parameters (e.g. -Xi=myidentity.pem)' do |x|
|
|
161
|
+
|
|
162
|
+
ssh_options << "-" + x.split("=").join(" ")
|
|
163
|
+
end
|
|
159
164
|
|
|
160
165
|
end
|
|
161
166
|
optparse.parse!
|
data/i2cssh.gemspec
CHANGED
metadata
CHANGED