i2cssh 1.6.0 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/README.markdown +1 -0
  2. data/VERSION +1 -1
  3. data/bin/i2cssh +5 -0
  4. data/i2cssh.gemspec +1 -1
  5. metadata +3 -3
@@ -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.6.0
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!
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "i2cssh"
8
- s.version = "1.6.0"
8
+ s.version = "1.7.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Wouter de Bie"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: i2cssh
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 11
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
- - 6
8
+ - 7
9
9
  - 0
10
- version: 1.6.0
10
+ version: 1.7.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Wouter de Bie