mssh 0.0.10 → 0.0.11
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 +7 -0
- data/README.md +20 -0
- metadata +50 -69
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8b1dc5731928a0e6c9bbefb194d034f4156c2ec7
|
4
|
+
data.tar.gz: 008cbed76335b038760840f85167bcb9ef2c2829
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: df5592d1342941ff5988bd047a96d82679c49b53a51340ccbf042f0e13c53a3a3dfd254105ca2f54f37407107cfdaca57c7b483c5d61d0055663c64d14c519ba
|
7
|
+
data.tar.gz: b4174d36c61d8ff535525d98a7df0defdffc32214681a19d6680d8299afc36c2d2f16940043c82da082655a6664576225b7c15f26692d255930368a819818a8c
|
data/README.md
CHANGED
@@ -10,6 +10,26 @@ Usage
|
|
10
10
|
|
11
11
|
<code>mssh -r host01,host02,host03 "uname -r" -c</code>
|
12
12
|
|
13
|
+
```sh
|
14
|
+
|
15
|
+
Usage: mssh [options]
|
16
|
+
-r, --range RANGE Requires a configured Range::Client. Use --hostlist if you do not use range
|
17
|
+
--hostlist x,y,z List of hostnames to execute on
|
18
|
+
-f, --file FILE List of hostnames in a FILE use (/dev/stdin) for reading from stdin
|
19
|
+
-m, --maxflight 50 How many subprocesses? 50 by default
|
20
|
+
-t, --timeout 60 How many seconds may each individual process take? 0 for no timeout
|
21
|
+
-g, --global_timeout 600 How many seconds for the whole shebang 0 for no timeout
|
22
|
+
-c, --collapse Collapse similar output
|
23
|
+
-v, --verbose verbose
|
24
|
+
-d, --debug Debug output
|
25
|
+
|
26
|
+
```
|
27
|
+
|
28
|
+
Installing
|
29
|
+
-----
|
30
|
+
|
31
|
+
mssh is a rubygem: <code>gem install mssh</code>. http://rubygems.org/gems/mssh
|
32
|
+
|
13
33
|
BUGS/TODO
|
14
34
|
---------
|
15
35
|
|
metadata
CHANGED
@@ -1,100 +1,81 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: mssh
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 0
|
9
|
-
- 10
|
10
|
-
version: 0.0.10
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.11
|
11
5
|
platform: ruby
|
12
|
-
authors:
|
6
|
+
authors:
|
13
7
|
- Evan Miller
|
14
8
|
autorequire:
|
15
9
|
bindir: bin
|
16
10
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- !ruby/object:Gem::Dependency
|
11
|
+
date: 2015-10-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
21
14
|
name: json
|
22
|
-
|
23
|
-
|
24
|
-
none: false
|
25
|
-
requirements:
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
26
17
|
- - ">="
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
|
29
|
-
segments:
|
30
|
-
- 0
|
31
|
-
version: "0"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
32
20
|
type: :runtime
|
33
|
-
version_requirements: *id001
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
|
-
name: io-poll
|
36
21
|
prerelease: false
|
37
|
-
|
38
|
-
|
39
|
-
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: io-poll
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
40
31
|
- - ">="
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
|
43
|
-
segments:
|
44
|
-
- 0
|
45
|
-
version: "0"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
46
34
|
type: :runtime
|
47
|
-
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
48
41
|
description: Simple library for running jobs and sshing to many hosts at once.
|
49
|
-
email:
|
42
|
+
email:
|
50
43
|
- github@squareup.com
|
51
|
-
executables:
|
44
|
+
executables:
|
52
45
|
- mssh
|
53
46
|
- mcmd
|
54
47
|
extensions: []
|
55
|
-
|
56
|
-
extra_rdoc_files:
|
48
|
+
extra_rdoc_files:
|
57
49
|
- LICENSE.md
|
58
|
-
files:
|
59
|
-
-
|
50
|
+
files:
|
51
|
+
- LICENSE.md
|
52
|
+
- README.md
|
60
53
|
- bin/mcmd
|
61
54
|
- bin/mssh
|
62
|
-
-
|
63
|
-
|
64
|
-
homepage: http://github.com/square/prodeng
|
55
|
+
- lib/mcmd.rb
|
56
|
+
homepage: http://github.com/square/mssh
|
65
57
|
licenses: []
|
66
|
-
|
58
|
+
metadata: {}
|
67
59
|
post_install_message:
|
68
|
-
rdoc_options:
|
69
|
-
- --charset=UTF-8
|
70
|
-
require_paths:
|
60
|
+
rdoc_options:
|
61
|
+
- "--charset=UTF-8"
|
62
|
+
require_paths:
|
71
63
|
- lib
|
72
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
73
|
-
|
74
|
-
requirements:
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
75
66
|
- - ">="
|
76
|
-
- !ruby/object:Gem::Version
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
version: "0"
|
81
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
|
-
none: false
|
83
|
-
requirements:
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
84
71
|
- - ">="
|
85
|
-
- !ruby/object:Gem::Version
|
86
|
-
hash: 23
|
87
|
-
segments:
|
88
|
-
- 1
|
89
|
-
- 3
|
90
|
-
- 6
|
72
|
+
- !ruby/object:Gem::Version
|
91
73
|
version: 1.3.6
|
92
74
|
requirements: []
|
93
|
-
|
94
75
|
rubyforge_project:
|
95
|
-
rubygems_version:
|
76
|
+
rubygems_version: 2.4.4
|
96
77
|
signing_key:
|
97
|
-
specification_version:
|
78
|
+
specification_version: 4
|
98
79
|
summary: Parallel ssh and command execution.
|
99
80
|
test_files: []
|
100
|
-
|
81
|
+
has_rdoc:
|