ssh_voodoo 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/bin/ssh_voodoo +2 -1
- data/ssh_voodoo.gemspec +1 -1
- metadata +4 -4
data/README.md
CHANGED
@@ -11,7 +11,7 @@ It's hosted on rubygems.org
|
|
11
11
|
```
|
12
12
|
ssh_voodoo -h
|
13
13
|
Usage: ssh_voodoo [options]
|
14
|
-
-s, --servers=SERVERS Servers to apply the actions to
|
14
|
+
-s, --servers=SERVERS Servers to apply the actions to. Comma-separated list, or path to file containing list of servers (newline delimited)
|
15
15
|
--debug Print lots of messages
|
16
16
|
--use-ssh-key [FILE] Use ssh key instead of password
|
17
17
|
-c, --command=STRING What command to run on the remote server
|
data/bin/ssh_voodoo
CHANGED
@@ -10,7 +10,8 @@ cmd = nil
|
|
10
10
|
|
11
11
|
opts = OptionParser.new(nil, 24, ' ')
|
12
12
|
opts.banner = 'Usage: ssh_voodoo [options]'
|
13
|
-
opts.on('--servers', '-s', '=SERVERS', Array,
|
13
|
+
opts.on('--servers', '-s', '=SERVERS', Array,
|
14
|
+
'Servers to apply the actions to. Comma-separated list, or path to file containing list of servers (newline delimited)') do |opt|
|
14
15
|
servers = opt
|
15
16
|
end
|
16
17
|
opts.on('--debug', 'Print lots of messages') do |opt|
|
data/ssh_voodoo.gemspec
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ssh_voodoo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Darren Dao
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-
|
18
|
+
date: 2012-03-09 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: net-ssh
|