idrac 0.1.7 → 0.1.8
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/bin/idrac +1 -1
- data/lib/idrac/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a94bc677f6ec7117c98a52a48462be78e1433d445a630369353d86ece9e6c39
|
4
|
+
data.tar.gz: f6453f23e3ddd78332adaca17132446baa94953e9346d7644c3c66903106b013
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 916af1bff71865d7cca2e195a47d2725911aebeda2f408dbc05a769d0b874365bdd9d29d15b31de50d46cd4c1e9ffd0a0790e04e08d2c13fb2a0aea8b6f7f655
|
7
|
+
data.tar.gz: c7367f3b45afee92a4d9fd54e0f4a4091f54378797e93ed3d73e5143127a764a9e53ab1388ef3c5a212334ac20ab68eba1aaecd73e56b68bb51dc85509d28c58
|
data/bin/idrac
CHANGED
@@ -18,7 +18,7 @@ module IDRAC
|
|
18
18
|
class_option :password, type: :string, required: true, desc: "iDRAC password"
|
19
19
|
class_option :port, type: :numeric, default: 443, desc: "iDRAC port"
|
20
20
|
class_option :no_ssl, type: :boolean, default: false, desc: "Disable SSL"
|
21
|
-
class_option :no_verify_ssl, type: :boolean, default: false, desc: "Disable SSL verification"
|
21
|
+
class_option :no_verify_ssl, type: :boolean, default: false, desc: "Disable SSL verification (use this for self-signed certificates)"
|
22
22
|
|
23
23
|
desc "firmware:update PATH", "Update firmware using the specified file"
|
24
24
|
method_option :wait, type: :boolean, default: true, desc: "Wait for the update to complete"
|
data/lib/idrac/version.rb
CHANGED