kondate 0.4.12 → 0.4.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/kondate/cli.rb +5 -5
- data/lib/kondate/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: 7813919c569904c53baf4c6d2cb9a16f70b1cf1a
|
4
|
+
data.tar.gz: eb7ec59e0efae2a9ffd3cd40c3cfa96dd4190ee3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8cd8af292e79696ccbc05c56dc0871c61650676029177417cb7caa80230a6ab0c172804fddfc1adec18d51cadbfb8bc9eae4e00be3a83175f5511197503dc6c6
|
7
|
+
data.tar.gz: df119a15ea7614d09924105d790e27b1808e917b5bae051c9b828fb0fe9626f47857ffe09b9115f6008cab3088ebd8f2315e962e9e5c67cbfa1b0668300cb132
|
data/CHANGELOG.md
CHANGED
data/lib/kondate/cli.rb
CHANGED
@@ -145,11 +145,11 @@ module Kondate
|
|
145
145
|
if @options[:vagrant]
|
146
146
|
command << " --vagrant"
|
147
147
|
else
|
148
|
-
|
149
|
-
|
150
|
-
command << " -u #{properties['ssh_user']
|
151
|
-
command << " -i #{(properties['ssh_keys'] || []).first
|
152
|
-
command << " -p #{properties['ssh_port']
|
148
|
+
# itamae itself sees Net:SSH::Config.for(host)
|
149
|
+
# here, we set ssh config if property file specially specifies
|
150
|
+
command << " -u #{properties['ssh_user']}" if properties['ssh_user']
|
151
|
+
command << " -i #{(Array(properties['ssh_keys']) || []).first}" if properties['ssh_keys']
|
152
|
+
command << " -p #{properties['ssh_port']}" if properties['ssh_port']
|
153
153
|
end
|
154
154
|
|
155
155
|
command << " -y #{property_file.path}"
|
data/lib/kondate/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kondate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sonots
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-03-
|
11
|
+
date: 2017-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: itamae
|