ec2-i2cssh 0.6.2 → 0.7
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/README.md +4 -4
- data/bin/{cluster → ec2-i2cssh} +1 -1
- data/lib/ec2/clusterssh/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c09201bbd1419c9d7a88b387710b59389c96f4b5
|
4
|
+
data.tar.gz: 877a4cff55b64acbb94c92c6429bc9e9121be2bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 66fe3d81f5457de2a59c1340315c41fe818d34a7b5e14e1b1051787f6e03e8dc52e97e94ec9e0d3c86c5dcb696c55252b5dfe233b696548d440698807acfafa0
|
7
|
+
data.tar.gz: 2f9fe78964310ebbd04b7d852919565948e4f8a34971c8a9632eade152d71c06f392f567085d79c5058708de99333ea4edafc6e982c883afd62a76e36886b555
|
data/README.md
CHANGED
@@ -24,8 +24,8 @@ Note: Mac users with the latest version of XCode may run into a compilation err
|
|
24
24
|
|
25
25
|
## Usage
|
26
26
|
|
27
|
-
$
|
28
|
-
Usage:
|
27
|
+
$ec2-i2cssh -h
|
28
|
+
Usage: ec2-i2cssh [-t TAGS] [-l USER] [-k KEY -s SECRET] [-r region]
|
29
29
|
-l, --login [USER] Log in with this user
|
30
30
|
-t, --tags [TAGS] a 'space' sparated key value pair of tags and values (i.e. -t 'role=web,database environment=dev')
|
31
31
|
-r, --region [REGION] AWS region
|
@@ -33,8 +33,8 @@ Note: Mac users with the latest version of XCode may run into a compilation err
|
|
33
33
|
-p, --use-public-ip Use public IP (default false)
|
34
34
|
|
35
35
|
|
36
|
-
$
|
37
|
-
$
|
36
|
+
$ec2-i2cssh -t Name=web,database #Connects to all web and database servers
|
37
|
+
$ec2-i2cssh -t 'role=web,database environment=dev' #Connects to all web and database servers in the dev environment
|
38
38
|
|
39
39
|
## Notes
|
40
40
|
|
data/bin/{cluster → ec2-i2cssh}
RENAMED
@@ -10,7 +10,7 @@ options = {
|
|
10
10
|
}
|
11
11
|
|
12
12
|
OptionParser.new do |opts|
|
13
|
-
opts.banner = "Usage:
|
13
|
+
opts.banner = "Usage: ec2-i2ssh [-t TAGS] [-l USER] [-k KEY -s SECRET] [-r region]"
|
14
14
|
|
15
15
|
opts.on("-l", "--login [USER]", "Log in with this user") do |opt|
|
16
16
|
options['user'] = opt
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ec2-i2cssh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: '0.7'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ber Zoidberg
|
@@ -70,7 +70,7 @@ description: Use instance tags to launch a I2CSSH session to multiple EC2 instan
|
|
70
70
|
email:
|
71
71
|
- ber.zoidberg@gmail.com
|
72
72
|
executables:
|
73
|
-
-
|
73
|
+
- ec2-i2cssh
|
74
74
|
extensions: []
|
75
75
|
extra_rdoc_files: []
|
76
76
|
files:
|
@@ -79,7 +79,7 @@ files:
|
|
79
79
|
- LICENSE.txt
|
80
80
|
- README.md
|
81
81
|
- Rakefile
|
82
|
-
- bin/
|
82
|
+
- bin/ec2-i2cssh
|
83
83
|
- ec2-i2cssh.gemspec
|
84
84
|
- lib/ec2/clusterssh.rb
|
85
85
|
- lib/ec2/clusterssh/version.rb
|