idrac 0.1.19 → 0.1.20
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/README.md +6 -0
- data/bin/idrac +1 -3
- 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: 87d81ae109224d8bfee1a4513bb10d307c703b74ab0d540a78aed849f16e26c4
|
4
|
+
data.tar.gz: 210a4e787490a16f76994090dc908248b97efec8f7bdb3c8a8136e6aee63ec5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea89b9514218b74a2393bc5eb46cc121a60ce9c6c9e0726f6c9df38b40dbb2cb5196bbc20350e56662729af77ef278dbabf6c4b61d162ac1a97467e3ef4fb548
|
7
|
+
data.tar.gz: a4213988f3a7ad827b20f90b8cdb4be43ffed7b20bc58f6dce3b9570b6504d73dfc34f67285f6cdd94515e0ec0a52651b27360c75464e297d0e0a448fbbf6774
|
data/README.md
CHANGED
@@ -105,6 +105,12 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
105
105
|
|
106
106
|
## Changelog
|
107
107
|
|
108
|
+
### Version 0.1.20
|
109
|
+
- **Simplified CLI Interface**: Removed the direct-mode CLI option
|
110
|
+
- Maintained internal direct mode functionality as an automatic fallback mechanism
|
111
|
+
- The client will still automatically switch to direct mode when session management fails
|
112
|
+
- This change simplifies the user interface while preserving the robust session handling
|
113
|
+
|
108
114
|
### Version 0.1.19
|
109
115
|
- **Basic Auth Session Clearing**: Implemented direct session management using Basic Authentication
|
110
116
|
- Added ability to list and delete all active sessions without requiring a session
|
data/bin/idrac
CHANGED
@@ -19,7 +19,6 @@ module IDRAC
|
|
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
21
|
class_option :verify_ssl, type: :boolean, default: false, desc: "Enable SSL verification (not recommended for iDRAC's self-signed certificates)"
|
22
|
-
class_option :direct_mode, type: :boolean, default: false, desc: "Use direct mode with Basic Auth instead of sessions (for environments with session limits)"
|
23
22
|
|
24
23
|
desc "firmware:update PATH", "Update firmware using the specified file"
|
25
24
|
method_option :wait, type: :boolean, default: true, desc: "Wait for the update to complete"
|
@@ -192,8 +191,7 @@ module IDRAC
|
|
192
191
|
password: options[:password],
|
193
192
|
port: options[:port],
|
194
193
|
use_ssl: !options[:no_ssl],
|
195
|
-
verify_ssl: options[:verify_ssl]
|
196
|
-
direct_mode: options[:direct_mode]
|
194
|
+
verify_ssl: options[:verify_ssl]
|
197
195
|
)
|
198
196
|
end
|
199
197
|
end
|
data/lib/idrac/version.rb
CHANGED