knife-vsphere 3.0.0 → 3.0.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26a03ccec0064effa45cd806abb8b6138780488f1898a777bebe061ddf6f5efb
|
4
|
+
data.tar.gz: 7c0f1c51012bc52c2ed655b6f294f8518b75e677de5ea155a5dd6ee89cbe7f3b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ded62ab8c4166844142a2c4a93c255d35114796d09ba63ef12dd90e42756299f872fc371b52fd0a327b54cf59d3c8dd8a39d206b0e703aa8c1c9fb6de41be54
|
7
|
+
data.tar.gz: 7609876a7dbcad5cd4edadd28b7a8e6d2477098cc42363e2f9e2b92a482ddc83ad3cbc545746b25d614d15251502adb58dabbbc0008a0c1f7aeb22b47900c3b0
|
@@ -20,11 +20,11 @@ class Chef::Knife::VsphereVmClone < Chef::Knife::BaseVsphereCommand
|
|
20
20
|
banner "knife vsphere vm clone VMNAME (options)"
|
21
21
|
|
22
22
|
# A AUTO_MAC for NIC?
|
23
|
-
AUTO_MAC
|
23
|
+
AUTO_MAC ||= "auto".freeze
|
24
24
|
# A NO IP for you to use!
|
25
|
-
NO_IPS
|
25
|
+
NO_IPS ||= "".freeze
|
26
26
|
# a linklayer origin is an actual nic
|
27
|
-
ORIGIN_IS_REAL_NIC
|
27
|
+
ORIGIN_IS_REAL_NIC ||= "linklayer".freeze
|
28
28
|
|
29
29
|
include Chef::Knife::WinrmBase
|
30
30
|
include CustomizationHelper
|
@@ -12,7 +12,7 @@ require "chef/knife/search_helper"
|
|
12
12
|
class Chef::Knife::VsphereVmState < Chef::Knife::BaseVsphereCommand
|
13
13
|
include SearchHelper
|
14
14
|
# The Different power states that vSphere reports
|
15
|
-
POWER_STATES
|
15
|
+
POWER_STATES ||= {
|
16
16
|
PS_ON => "powered on",
|
17
17
|
PS_OFF => "powered off",
|
18
18
|
PS_SUSPENDED => "suspended",
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knife-vsphere
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ezra Pagel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-07-
|
11
|
+
date: 2019-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: knife-windows
|