manageiq-appliance_console 10.0.0 → 10.0.2
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/CHANGELOG.md +11 -1
- data/lib/manageiq/appliance_console/database_admin.rb +2 -6
- data/lib/manageiq/appliance_console/external_httpd_authentication/external_httpd_configuration.rb +2 -17
- data/lib/manageiq/appliance_console/prompts.rb +0 -1
- data/lib/manageiq/appliance_console/version.rb +1 -1
- data/manageiq-appliance_console.gemspec +4 -3
- data/renovate.json +2 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c77c3969c9b31bee15aad94e003edd06d4fb99238941b21f5c44692aadce73b6
|
4
|
+
data.tar.gz: 52b880b6340145ef461903cff77156b517d3c4bd1741297f4a117db730c11663
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26aaea2c45e13480671cf748ba7ee8e04ff9f97aa86a54b3a69bb4b9b13e20ebe8ae9f9b0e68b3812e2f7bc251fcaf9ab580f9d2f751ccfff5b7842844d72bd5
|
7
|
+
data.tar.gz: 1dcd8005f8464ab40c569876b77c0adae900f07d242b7e411d2dc054d0c35af990c821805870add5641ff13091e6990fc178a94b89abcb1bad55f1107de58856
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
4
4
|
|
5
5
|
## [Unreleased]
|
6
6
|
|
7
|
+
## [10.0.2] - 2025-05-08
|
8
|
+
## Changed
|
9
|
+
- Remove ping of IPA Server [[#278](https://github.com/ManageIQ/manageiq-appliance_console/pull/278)]
|
10
|
+
|
11
|
+
## [10.0.1] - 2024-11-27
|
12
|
+
## Changed
|
13
|
+
- Readline does not work with ruby 3.3 [[#270](https://github.com/ManageIQ/manageiq-appliance_console/pull/270)]
|
14
|
+
|
7
15
|
## [10.0.0] - 2024-11-19
|
8
16
|
### Added
|
9
17
|
- Test with ruby 3.3 [[#269](https://github.com/ManageIQ/manageiq-appliance_console/pull/269)]
|
@@ -299,7 +307,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
299
307
|
|
300
308
|
## [1.0.0] - 2017-10-19
|
301
309
|
|
302
|
-
[Unreleased]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v10.0.
|
310
|
+
[Unreleased]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v10.0.2...HEAD
|
311
|
+
[10.0.2]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v10.0.1...v10.0.2
|
312
|
+
[10.0.1]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v10.0.0...v10.0.1
|
303
313
|
[10.0.0]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v9.1.1...v10.0.0
|
304
314
|
[9.1.1]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v9.1.0...v9.1.1
|
305
315
|
[9.1.0]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v9.0.3...v9.1.0
|
@@ -118,15 +118,11 @@ module ManageIQ
|
|
118
118
|
end
|
119
119
|
|
120
120
|
def should_exclude_tables?
|
121
|
-
ask_yn?("Would you like to exclude tables in the dump")
|
122
|
-
q.readline = true
|
123
|
-
end
|
121
|
+
ask_yn?("Would you like to exclude tables in the dump")
|
124
122
|
end
|
125
123
|
|
126
124
|
def should_split_output?
|
127
|
-
ask_yn?("Would you like to split the #{action} output into multiple parts")
|
128
|
-
q.readline = true
|
129
|
-
end
|
125
|
+
ask_yn?("Would you like to split the #{action} output into multiple parts")
|
130
126
|
end
|
131
127
|
|
132
128
|
def filename_prompt_args
|
data/lib/manageiq/appliance_console/external_httpd_authentication/external_httpd_configuration.rb
CHANGED
@@ -170,8 +170,8 @@ module ApplianceConsole
|
|
170
170
|
true
|
171
171
|
end
|
172
172
|
|
173
|
-
def valid_parameters?(
|
174
|
-
|
173
|
+
def valid_parameters?(_ipaserver)
|
174
|
+
true
|
175
175
|
end
|
176
176
|
|
177
177
|
#
|
@@ -182,21 +182,6 @@ module ApplianceConsole
|
|
182
182
|
File.open(path, "w") { |f| f.write(config) }
|
183
183
|
end
|
184
184
|
|
185
|
-
#
|
186
|
-
# Network validation
|
187
|
-
#
|
188
|
-
def host_reachable?(host, what = "Server")
|
189
|
-
require 'net/ping'
|
190
|
-
say("Checking connectivity to #{host} ... ")
|
191
|
-
unless Net::Ping::External.new(host).ping
|
192
|
-
say("Failed.\nCould not connect to #{host},")
|
193
|
-
say("the #{what} must be reachable by name.")
|
194
|
-
return false
|
195
|
-
end
|
196
|
-
say("Succeeded.")
|
197
|
-
true
|
198
|
-
end
|
199
|
-
|
200
185
|
def cp_template(file, src_dir, dest_dir = "/")
|
201
186
|
src_path = path_join(src_dir, file)
|
202
187
|
dest_path = path_join(dest_dir, file.gsub(".erb", ""))
|
@@ -212,7 +212,6 @@ module ApplianceConsole
|
|
212
212
|
|
213
213
|
def just_ask(prompt, default = nil, validate = nil, error_text = nil, klass = nil)
|
214
214
|
ask("Enter the #{prompt}: ", klass) do |q|
|
215
|
-
q.readline = true
|
216
215
|
q.default = default.to_s if default
|
217
216
|
q.validate = validate if validate
|
218
217
|
q.responses[:not_valid] = error_text ? "Please provide #{error_text}" : "Please provide in the specified format"
|
@@ -37,9 +37,10 @@ Gem::Specification.new do |spec|
|
|
37
37
|
spec.add_runtime_dependency "pg-logical_replication"
|
38
38
|
|
39
39
|
spec.add_development_dependency "bundler"
|
40
|
-
spec.add_development_dependency "manageiq-style"
|
40
|
+
spec.add_development_dependency "manageiq-style", ">= 1.5.4"
|
41
|
+
|
41
42
|
spec.add_development_dependency "rake"
|
42
|
-
spec.add_development_dependency "rspec",
|
43
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
43
44
|
spec.add_development_dependency "rubocop"
|
44
|
-
spec.add_development_dependency "simplecov",
|
45
|
+
spec.add_development_dependency "simplecov", ">= 0.21.2"
|
45
46
|
end
|
data/renovate.json
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: manageiq-appliance_console
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 10.0.
|
4
|
+
version: 10.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ManageIQ Developers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-05-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -252,14 +252,14 @@ dependencies:
|
|
252
252
|
requirements:
|
253
253
|
- - ">="
|
254
254
|
- !ruby/object:Gem::Version
|
255
|
-
version:
|
255
|
+
version: 1.5.4
|
256
256
|
type: :development
|
257
257
|
prerelease: false
|
258
258
|
version_requirements: !ruby/object:Gem::Requirement
|
259
259
|
requirements:
|
260
260
|
- - ">="
|
261
261
|
- !ruby/object:Gem::Version
|
262
|
-
version:
|
262
|
+
version: 1.5.4
|
263
263
|
- !ruby/object:Gem::Dependency
|
264
264
|
name: rake
|
265
265
|
requirement: !ruby/object:Gem::Requirement
|
@@ -401,7 +401,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
401
401
|
- !ruby/object:Gem::Version
|
402
402
|
version: '0'
|
403
403
|
requirements: []
|
404
|
-
rubygems_version: 3.
|
404
|
+
rubygems_version: 3.5.22
|
405
405
|
signing_key:
|
406
406
|
specification_version: 4
|
407
407
|
summary: ManageIQ Appliance Console
|