knife-cloud 2.0.3 → 2.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/chef/knife/cloud/chefbootstrap/bootstrap_distribution.rb +1 -1
- data/lib/chef/knife/cloud/chefbootstrap/bootstrap_protocol.rb +1 -1
- data/lib/chef/knife/cloud/chefbootstrap/bootstrapper.rb +4 -4
- data/lib/chef/knife/cloud/chefbootstrap/ssh_bootstrap_protocol.rb +1 -1
- data/lib/chef/knife/cloud/chefbootstrap/winrm_bootstrap_protocol.rb +1 -1
- data/lib/chef/knife/cloud/command.rb +2 -2
- data/lib/chef/knife/cloud/command_bootstrap.rb +2 -2
- data/lib/chef/knife/cloud/fog/service.rb +2 -2
- data/lib/chef/knife/cloud/list_resource_command.rb +1 -1
- data/lib/chef/knife/cloud/server/create_command.rb +3 -3
- data/lib/chef/knife/cloud/server/create_options.rb +2 -2
- data/lib/chef/knife/cloud/server/delete_command.rb +1 -1
- data/lib/chef/knife/cloud/server/delete_options.rb +1 -1
- data/lib/chef/knife/cloud/server/list_command.rb +2 -2
- data/lib/chef/knife/cloud/server/show_command.rb +2 -2
- data/lib/chef/knife/cloud/service.rb +2 -2
- data/lib/knife-cloud/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14f7ee3017bfcd37e3575dec76011a14f9af8ae6fa7dd7201b069e565f8fd652
|
4
|
+
data.tar.gz: d7d7aa34c539cc28f2590e934c53940a042677e715d203c9512fbffa44f9cb1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e246f4727e8876ed415551368667e0fc7494f449ba4f28d59f257e1eba604a9f51225a3f6ef412370687f7b07a4f143232e14c449bfffe7d2317251f4b97960c
|
7
|
+
data.tar.gz: 326f8e5aded5549cca4caf0500a1beca39946fa54860e85b26cce8131b61304e45189b7af05f4d44ed4d41742ad87afba497f0f0f68704562bd0eefdc1b11956
|
@@ -18,10 +18,10 @@
|
|
18
18
|
#
|
19
19
|
|
20
20
|
require "chef/knife/core/ui"
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
21
|
+
require_relative "ssh_bootstrap_protocol"
|
22
|
+
require_relative "winrm_bootstrap_protocol"
|
23
|
+
require_relative "bootstrap_distribution"
|
24
|
+
require_relative "../exceptions"
|
25
25
|
|
26
26
|
class Chef
|
27
27
|
class Knife
|
@@ -14,9 +14,9 @@
|
|
14
14
|
# See the License for the specific language governing permissions and
|
15
15
|
# limitations under the License.
|
16
16
|
#
|
17
|
-
|
18
|
-
|
19
|
-
|
17
|
+
require_relative "../command_bootstrap"
|
18
|
+
require_relative "../exceptions"
|
19
|
+
require_relative "../chefbootstrap/bootstrapper"
|
20
20
|
|
21
21
|
class Chef
|
22
22
|
class Knife
|
@@ -15,8 +15,8 @@
|
|
15
15
|
# limitations under the License.
|
16
16
|
#
|
17
17
|
|
18
|
-
|
19
|
-
|
18
|
+
require_relative "../chefbootstrap/bootstrap_options"
|
19
|
+
require_relative "options"
|
20
20
|
|
21
21
|
class Chef
|
22
22
|
class Knife
|
data/lib/knife-cloud/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knife-cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kaustubh Deorukhkar
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2019-
|
12
|
+
date: 2019-12-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: chef
|