pec2 0.5.0 → 0.5.1
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.
- checksums.yaml +4 -4
- data/lib/pec2/cli.rb +2 -1
- data/lib/pec2/pssh.rb +2 -4
- data/lib/pec2/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb66795b5285c636e91c6f868d3a8232ace8e6b0
|
4
|
+
data.tar.gz: e6adbd3a3fb3ecf2c79f9328b748b8a12fd0a6d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3eccd5049cebf61354803fdfe964051778b1ed79a13cf4589a482a28a91c1d477fed4c285497536f1b7fa1cdb88f5472dd9c633b7700f22a0ffbfb7e8f0e961a
|
7
|
+
data.tar.gz: c20e2e77b347f67499b19d9fc855ed5eb2488beb54c0237ff5ca8cc6007062b5d980932ad1e4e976d81625aded3f7ee043e49607813a94b72b20f64840bdba71
|
data/lib/pec2/cli.rb
CHANGED
@@ -40,6 +40,7 @@ module Pec2
|
|
40
40
|
exit
|
41
41
|
end
|
42
42
|
|
43
|
+
@logger.info(%Q{connection size #{addresses.size}.})
|
43
44
|
@logger.info(%Q{listing connection to #{addresses.join(', ')}.})
|
44
45
|
|
45
46
|
tf = Tempfile.open("pec2") { |fp|
|
@@ -47,7 +48,7 @@ module Pec2
|
|
47
48
|
fp
|
48
49
|
}
|
49
50
|
|
50
|
-
pssh = Pssh.new(options, tf.path)
|
51
|
+
pssh = Pssh.new(options, tf.path, addresses.size)
|
51
52
|
|
52
53
|
interactive = options[:command] ? false : true
|
53
54
|
|
data/lib/pec2/pssh.rb
CHANGED
@@ -5,7 +5,7 @@ module Pec2
|
|
5
5
|
|
6
6
|
PSSH_PATH = File.expand_path('../../../exe/bin/pssh', __FILE__)
|
7
7
|
|
8
|
-
def initialize(options, hosts_file)
|
8
|
+
def initialize(options, hosts_file, parallel = 1)
|
9
9
|
@pssh_command = "#{PSSH_PATH} -t 0 -x '-tt' -h #{hosts_file} -O StrictHostKeyChecking=no"
|
10
10
|
if options[:print]
|
11
11
|
@pssh_command = "#{@pssh_command} -P"
|
@@ -19,9 +19,7 @@ module Pec2
|
|
19
19
|
@pssh_command = "#{@pssh_command} -o #{options[:log]}"
|
20
20
|
end
|
21
21
|
|
22
|
-
|
23
|
-
@pssh_command = "#{@pssh_command} -p #{options[:parallel]}"
|
24
|
-
end
|
22
|
+
@pssh_command = "#{@pssh_command} -p #{options[:parallel] || parallel}"
|
25
23
|
@sudo_password = options[:sudo_password]
|
26
24
|
end
|
27
25
|
|
data/lib/pec2/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pec2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- toyama0919
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-03-
|
11
|
+
date: 2017-03-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|