hansolo 0.1.11 → 0.1.12
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/hansolo/commands/base.rb +1 -1
- data/lib/hansolo/commands/solo.rb +1 -1
- data/lib/hansolo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f8b5dda29af338bfe609ec97dd9f62198cd901a
|
|
4
|
+
data.tar.gz: 990490d4e3f49792dae5c1865e6f4e351b7938ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8700b5b29c0df9da1cb92f593cace9cdf7e5f52d0ba10d2356d1160d2f8a9bbb28a2792c7b9eeab0f831280cbfa3ea71efe43c1b1adb5461e06f8aa854a86797
|
|
7
|
+
data.tar.gz: 56b7a76aa2f0f5d3f73da7047d174e0a04dcd59ed74bed3217907aaae4cd1f91110b7d0c8e5378b6f9219c5f380c3dd6843c5b01b81bd957dfd6a72b70c29383
|
|
@@ -72,7 +72,7 @@ module Hansolo
|
|
|
72
72
|
exit
|
|
73
73
|
end
|
|
74
74
|
|
|
75
|
-
parser.on( '-t', '--target a,b,c', Array, "comma-sep list of urls, e.g.: user@host:port
|
|
75
|
+
parser.on( '-t', '--target a,b,c', Array, "comma-sep list of urls, e.g.: ssh://user@host:port,ssh://user@host2:port") do |option|
|
|
76
76
|
Hansolo.target = option
|
|
77
77
|
end
|
|
78
78
|
|
|
@@ -42,7 +42,7 @@ module Hansolo
|
|
|
42
42
|
def setup_parser
|
|
43
43
|
super
|
|
44
44
|
|
|
45
|
-
parser.on('--chef-options
|
|
45
|
+
parser.on('--chef-options s', String, 'options to pass to chef-client, e.g. --chef-options "-l"') do |chef_options|
|
|
46
46
|
Hansolo.chef_options = chef_options
|
|
47
47
|
end
|
|
48
48
|
|
data/lib/hansolo/version.rb
CHANGED