manageiq-appliance_console 1.0.0
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 +7 -0
- data/.codeclimate.yml +47 -0
- data/.gitignore +12 -0
- data/.rspec +4 -0
- data/.rspec_ci +4 -0
- data/.rubocop.yml +4 -0
- data/.rubocop_cc.yml +5 -0
- data/.rubocop_local.yml +2 -0
- data/.travis.yml +19 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +202 -0
- data/README.md +45 -0
- data/Rakefile +6 -0
- data/bin/appliance_console +661 -0
- data/bin/appliance_console_cli +7 -0
- data/lib/manageiq-appliance_console.rb +51 -0
- data/lib/manageiq/appliance_console/certificate.rb +146 -0
- data/lib/manageiq/appliance_console/certificate_authority.rb +140 -0
- data/lib/manageiq/appliance_console/cli.rb +363 -0
- data/lib/manageiq/appliance_console/database_configuration.rb +286 -0
- data/lib/manageiq/appliance_console/database_maintenance.rb +35 -0
- data/lib/manageiq/appliance_console/database_maintenance_hourly.rb +58 -0
- data/lib/manageiq/appliance_console/database_maintenance_periodic.rb +84 -0
- data/lib/manageiq/appliance_console/database_replication.rb +146 -0
- data/lib/manageiq/appliance_console/database_replication_primary.rb +59 -0
- data/lib/manageiq/appliance_console/database_replication_standby.rb +166 -0
- data/lib/manageiq/appliance_console/date_time_configuration.rb +117 -0
- data/lib/manageiq/appliance_console/errors.rb +5 -0
- data/lib/manageiq/appliance_console/external_auth_options.rb +153 -0
- data/lib/manageiq/appliance_console/external_database_configuration.rb +34 -0
- data/lib/manageiq/appliance_console/external_httpd_authentication.rb +157 -0
- data/lib/manageiq/appliance_console/external_httpd_authentication/external_httpd_configuration.rb +249 -0
- data/lib/manageiq/appliance_console/internal_database_configuration.rb +187 -0
- data/lib/manageiq/appliance_console/key_configuration.rb +118 -0
- data/lib/manageiq/appliance_console/logfile_configuration.rb +117 -0
- data/lib/manageiq/appliance_console/logger.rb +23 -0
- data/lib/manageiq/appliance_console/logging.rb +102 -0
- data/lib/manageiq/appliance_console/logical_volume_management.rb +94 -0
- data/lib/manageiq/appliance_console/principal.rb +46 -0
- data/lib/manageiq/appliance_console/prompts.rb +211 -0
- data/lib/manageiq/appliance_console/scap.rb +53 -0
- data/lib/manageiq/appliance_console/temp_storage_configuration.rb +79 -0
- data/lib/manageiq/appliance_console/timezone_configuration.rb +58 -0
- data/lib/manageiq/appliance_console/utilities.rb +67 -0
- data/lib/manageiq/appliance_console/version.rb +5 -0
- data/locales/appliance/en.yml +42 -0
- data/locales/container/en.yml +30 -0
- data/manageiq-appliance_console.gemspec +40 -0
- data/zanata.xml +7 -0
- metadata +317 -0
@@ -0,0 +1,58 @@
|
|
1
|
+
require "linux_admin"
|
2
|
+
|
3
|
+
module ManageIQ
|
4
|
+
module ApplianceConsole
|
5
|
+
class TimezoneConfiguration
|
6
|
+
include ManageIQ::ApplianceConsole::Logging
|
7
|
+
|
8
|
+
attr_reader :current_timzone
|
9
|
+
attr_accessor :new_timezone
|
10
|
+
|
11
|
+
def initialize(region_timezone_string)
|
12
|
+
@current_timezone = region_timezone_string
|
13
|
+
end
|
14
|
+
|
15
|
+
def activate
|
16
|
+
log_and_feedback(__method__) do
|
17
|
+
say("Applying new timezone #{new_timezone}...")
|
18
|
+
begin
|
19
|
+
LinuxAdmin::TimeDate.system_timezone = new_timezone
|
20
|
+
rescue LinuxAdmin::TimeDate::TimeCommandError => e
|
21
|
+
say("Failed to apply timezone configuration")
|
22
|
+
logger.error("Failed to timezone configuration: #{e.message}")
|
23
|
+
return false
|
24
|
+
end
|
25
|
+
end
|
26
|
+
true
|
27
|
+
end
|
28
|
+
|
29
|
+
def ask_questions
|
30
|
+
ask_for_timezone && confirm
|
31
|
+
end
|
32
|
+
|
33
|
+
def ask_for_timezone
|
34
|
+
current_item = timezone_hash
|
35
|
+
|
36
|
+
while current_item.is_a?(Hash)
|
37
|
+
selection = ask_with_menu("Geographic Location", current_item.keys, nil, false)
|
38
|
+
return false if selection == CANCEL
|
39
|
+
current_item = current_item[selection]
|
40
|
+
end
|
41
|
+
|
42
|
+
@new_timezone = current_item
|
43
|
+
true
|
44
|
+
end
|
45
|
+
|
46
|
+
def confirm
|
47
|
+
clear_screen
|
48
|
+
agree("Change the timezone to #{new_timezone}? (Y/N): ")
|
49
|
+
end
|
50
|
+
|
51
|
+
def timezone_hash
|
52
|
+
LinuxAdmin::TimeDate.timezones.each_with_object({}) do |tz, hash|
|
53
|
+
hash.store_path(*tz.split("/"), tz)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end # class TimezoneConfiguration
|
57
|
+
end # module ApplianceConsole
|
58
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
# TODO: add appropriate requires instead of depending on appliance_console.rb.
|
2
|
+
# TODO: Further refactor these unrelated methods.
|
3
|
+
require "util/postgres_admin"
|
4
|
+
require "awesome_spawn"
|
5
|
+
|
6
|
+
module ManageIQ
|
7
|
+
module ApplianceConsole
|
8
|
+
module Utilities
|
9
|
+
def self.rake(task, params)
|
10
|
+
rake_run(task, params).success?
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.rake_run(task, params)
|
14
|
+
result = AwesomeSpawn.run("rake #{task}", :chdir => ManageIQ::ApplianceConsole::RAILS_ROOT, :params => params)
|
15
|
+
ManageIQ::ApplianceConsole.logger.error(result.error) if result.failure?
|
16
|
+
result
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.db_connections
|
20
|
+
result = AwesomeSpawn.run("bin/rails runner",
|
21
|
+
:params => ["exit EvmDatabaseOps.database_connections"],
|
22
|
+
:chdir => ManageIQ::ApplianceConsole::RAILS_ROOT
|
23
|
+
)
|
24
|
+
Integer(result.exit_status)
|
25
|
+
end
|
26
|
+
|
27
|
+
def self.bail_if_db_connections(message)
|
28
|
+
say("Checking for connections to the database...\n\n")
|
29
|
+
if (conns = ManageIQ::ApplianceConsole::Utilities.db_connections - 1) > 0
|
30
|
+
say("Warning: There are #{conns} existing connections to the database #{message}.\n\n")
|
31
|
+
press_any_key
|
32
|
+
raise MiqSignalError
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def self.db_region
|
37
|
+
result = AwesomeSpawn.run(
|
38
|
+
"bin/rails runner",
|
39
|
+
:params => ["puts ApplicationRecord.my_region_number"],
|
40
|
+
:chdir => ManageIQ::ApplianceConsole::RAILS_ROOT
|
41
|
+
)
|
42
|
+
|
43
|
+
if result.failure?
|
44
|
+
logger = ManageIQ::ApplianceConsole.logger
|
45
|
+
logger.error "db_region: Failed to detect region_number"
|
46
|
+
logger.error "Output: #{result.output.inspect}" unless result.output.blank?
|
47
|
+
logger.error "Error: #{result.error.inspect}" unless result.error.blank?
|
48
|
+
return
|
49
|
+
end
|
50
|
+
|
51
|
+
result.output.strip
|
52
|
+
end
|
53
|
+
|
54
|
+
def self.pg_status
|
55
|
+
LinuxAdmin::Service.new(PostgresAdmin.service_name).running? ? "running" : "not running"
|
56
|
+
end
|
57
|
+
|
58
|
+
def self.test_network
|
59
|
+
require 'net/ping'
|
60
|
+
say("Test Network Configuration\n\n")
|
61
|
+
while (h = ask_for_ip_or_hostname_or_none("hostname, ip address, or none to continue").presence)
|
62
|
+
say(" " + h + ': ' + (Net::Ping::External.new(h).ping ? 'Success!' : 'Failure, Check network settings and IP address or hostname provided.'))
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
---
|
2
|
+
en:
|
3
|
+
product:
|
4
|
+
name: ManageIQ
|
5
|
+
advanced_settings:
|
6
|
+
menu_order:
|
7
|
+
- networking
|
8
|
+
- timezone
|
9
|
+
- datetime
|
10
|
+
- dbrestore
|
11
|
+
- db_config
|
12
|
+
- db_replication
|
13
|
+
- db_maintenance
|
14
|
+
- log_config
|
15
|
+
- failover_monitor
|
16
|
+
- httpdauth
|
17
|
+
- extauth_opts
|
18
|
+
- key_gen
|
19
|
+
- evmstop
|
20
|
+
- evmstart
|
21
|
+
- restart
|
22
|
+
- shutdown
|
23
|
+
- summary
|
24
|
+
- quit
|
25
|
+
networking: Configure Network
|
26
|
+
timezone: Set Timezone
|
27
|
+
datetime: Set Date and Time
|
28
|
+
dbrestore: Restore Database From Backup
|
29
|
+
db_config: Configure Database
|
30
|
+
db_replication: Configure Database Replication
|
31
|
+
db_maintenance: Configure Database Maintenance
|
32
|
+
log_config: Logfile Configuration
|
33
|
+
failover_monitor: Configure Application Database Failover Monitor
|
34
|
+
httpdauth: Configure External Authentication (httpd)
|
35
|
+
extauth_opts: Update External Authentication Options
|
36
|
+
evmstop: Stop EVM Server Processes
|
37
|
+
key_gen: Generate Custom Encryption Key
|
38
|
+
evmstart: Start EVM Server Processes
|
39
|
+
restart: Restart Appliance
|
40
|
+
shutdown: Shut Down Appliance
|
41
|
+
summary: Summary Information
|
42
|
+
quit: Quit
|
@@ -0,0 +1,30 @@
|
|
1
|
+
---
|
2
|
+
en:
|
3
|
+
product:
|
4
|
+
name: ManageIQ
|
5
|
+
advanced_settings:
|
6
|
+
menu_order:
|
7
|
+
- timezone
|
8
|
+
- dbrestore
|
9
|
+
- db_config
|
10
|
+
- db_replication
|
11
|
+
- db_maintenance
|
12
|
+
- failover_monitor
|
13
|
+
- key_gen
|
14
|
+
- evmstop
|
15
|
+
- evmstart
|
16
|
+
- shutdown
|
17
|
+
- summary
|
18
|
+
- quit
|
19
|
+
timezone: Set Timezone
|
20
|
+
dbrestore: Restore Database From Backup
|
21
|
+
db_config: Configure Database
|
22
|
+
db_replication: Configure Database Replication
|
23
|
+
db_maintenance: Configure Database Maintenance
|
24
|
+
failover_monitor: Configure Application Database Failover Monitor
|
25
|
+
evmstop: Stop EVM Server Processes
|
26
|
+
key_gen: Generate Custom Encryption Key
|
27
|
+
evmstart: Start EVM Server Processes
|
28
|
+
shutdown: Shut Down Appliance
|
29
|
+
summary: Summary Information
|
30
|
+
quit: Quit
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'manageiq/appliance_console/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "manageiq-appliance_console"
|
8
|
+
spec.version = ManageIQ::ApplianceConsole::VERSION
|
9
|
+
spec.authors = ["ManageIQ Developers"]
|
10
|
+
|
11
|
+
spec.summary = "ManageIQ Appliance Console"
|
12
|
+
spec.description = "ManageIQ Appliance Console"
|
13
|
+
spec.homepage = "https://github.com/ManageIQ/manageiq-appliance_console"
|
14
|
+
spec.license = "Apache-2.0"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
|
+
f.match(%r{^(test|spec|features)/})
|
18
|
+
end
|
19
|
+
spec.bindir = "bin"
|
20
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
21
|
+
spec.require_paths = ["lib"]
|
22
|
+
|
23
|
+
spec.add_runtime_dependency "activerecord"
|
24
|
+
spec.add_runtime_dependency "activesupport"
|
25
|
+
spec.add_runtime_dependency "awesome_spawn", "~> 1.4"
|
26
|
+
spec.add_runtime_dependency "bcrypt", "~> 3.1.10"
|
27
|
+
spec.add_runtime_dependency "highline", "~> 1.6.21"
|
28
|
+
spec.add_runtime_dependency "i18n", "~> 0.7"
|
29
|
+
spec.add_runtime_dependency "linux_admin", "~> 1.0"
|
30
|
+
spec.add_runtime_dependency "manageiq-gems-pending"
|
31
|
+
spec.add_runtime_dependency "pg"
|
32
|
+
spec.add_runtime_dependency "trollop", "~> 2.0"
|
33
|
+
|
34
|
+
spec.add_development_dependency "bundler"
|
35
|
+
spec.add_development_dependency "codeclimate-test-reporter", "~> 1.0.0"
|
36
|
+
spec.add_development_dependency "rake"
|
37
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
38
|
+
spec.add_development_dependency "rubocop"
|
39
|
+
spec.add_development_dependency "simplecov"
|
40
|
+
end
|
data/zanata.xml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
+
<config xmlns="http://zanata.org/namespace/config/">
|
3
|
+
<url>https://translate.zanata.org/</url>
|
4
|
+
<project>manageiq-appliance_console</project>
|
5
|
+
<project-version>master</project-version>
|
6
|
+
<project-type>gettext</project-type>
|
7
|
+
</config>
|
metadata
ADDED
@@ -0,0 +1,317 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: manageiq-appliance_console
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- ManageIQ Developers
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-10-19 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activerecord
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: activesupport
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: awesome_spawn
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.4'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.4'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bcrypt
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 3.1.10
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 3.1.10
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: highline
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 1.6.21
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.6.21
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: i18n
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0.7'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0.7'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: linux_admin
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '1.0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '1.0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: manageiq-gems-pending
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: pg
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: trollop
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '2.0'
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '2.0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: bundler
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: codeclimate-test-reporter
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - "~>"
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: 1.0.0
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - "~>"
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: 1.0.0
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: rake
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - ">="
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '0'
|
188
|
+
type: :development
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - ">="
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '0'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: rspec
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - "~>"
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '3.0'
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - "~>"
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '3.0'
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: rubocop
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - ">="
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: '0'
|
216
|
+
type: :development
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '0'
|
223
|
+
- !ruby/object:Gem::Dependency
|
224
|
+
name: simplecov
|
225
|
+
requirement: !ruby/object:Gem::Requirement
|
226
|
+
requirements:
|
227
|
+
- - ">="
|
228
|
+
- !ruby/object:Gem::Version
|
229
|
+
version: '0'
|
230
|
+
type: :development
|
231
|
+
prerelease: false
|
232
|
+
version_requirements: !ruby/object:Gem::Requirement
|
233
|
+
requirements:
|
234
|
+
- - ">="
|
235
|
+
- !ruby/object:Gem::Version
|
236
|
+
version: '0'
|
237
|
+
description: ManageIQ Appliance Console
|
238
|
+
email:
|
239
|
+
executables:
|
240
|
+
- appliance_console
|
241
|
+
- appliance_console_cli
|
242
|
+
extensions: []
|
243
|
+
extra_rdoc_files: []
|
244
|
+
files:
|
245
|
+
- ".codeclimate.yml"
|
246
|
+
- ".gitignore"
|
247
|
+
- ".rspec"
|
248
|
+
- ".rspec_ci"
|
249
|
+
- ".rubocop.yml"
|
250
|
+
- ".rubocop_cc.yml"
|
251
|
+
- ".rubocop_local.yml"
|
252
|
+
- ".travis.yml"
|
253
|
+
- Gemfile
|
254
|
+
- LICENSE.txt
|
255
|
+
- README.md
|
256
|
+
- Rakefile
|
257
|
+
- bin/appliance_console
|
258
|
+
- bin/appliance_console_cli
|
259
|
+
- lib/manageiq-appliance_console.rb
|
260
|
+
- lib/manageiq/appliance_console/certificate.rb
|
261
|
+
- lib/manageiq/appliance_console/certificate_authority.rb
|
262
|
+
- lib/manageiq/appliance_console/cli.rb
|
263
|
+
- lib/manageiq/appliance_console/database_configuration.rb
|
264
|
+
- lib/manageiq/appliance_console/database_maintenance.rb
|
265
|
+
- lib/manageiq/appliance_console/database_maintenance_hourly.rb
|
266
|
+
- lib/manageiq/appliance_console/database_maintenance_periodic.rb
|
267
|
+
- lib/manageiq/appliance_console/database_replication.rb
|
268
|
+
- lib/manageiq/appliance_console/database_replication_primary.rb
|
269
|
+
- lib/manageiq/appliance_console/database_replication_standby.rb
|
270
|
+
- lib/manageiq/appliance_console/date_time_configuration.rb
|
271
|
+
- lib/manageiq/appliance_console/errors.rb
|
272
|
+
- lib/manageiq/appliance_console/external_auth_options.rb
|
273
|
+
- lib/manageiq/appliance_console/external_database_configuration.rb
|
274
|
+
- lib/manageiq/appliance_console/external_httpd_authentication.rb
|
275
|
+
- lib/manageiq/appliance_console/external_httpd_authentication/external_httpd_configuration.rb
|
276
|
+
- lib/manageiq/appliance_console/internal_database_configuration.rb
|
277
|
+
- lib/manageiq/appliance_console/key_configuration.rb
|
278
|
+
- lib/manageiq/appliance_console/logfile_configuration.rb
|
279
|
+
- lib/manageiq/appliance_console/logger.rb
|
280
|
+
- lib/manageiq/appliance_console/logging.rb
|
281
|
+
- lib/manageiq/appliance_console/logical_volume_management.rb
|
282
|
+
- lib/manageiq/appliance_console/principal.rb
|
283
|
+
- lib/manageiq/appliance_console/prompts.rb
|
284
|
+
- lib/manageiq/appliance_console/scap.rb
|
285
|
+
- lib/manageiq/appliance_console/temp_storage_configuration.rb
|
286
|
+
- lib/manageiq/appliance_console/timezone_configuration.rb
|
287
|
+
- lib/manageiq/appliance_console/utilities.rb
|
288
|
+
- lib/manageiq/appliance_console/version.rb
|
289
|
+
- locales/appliance/en.yml
|
290
|
+
- locales/container/en.yml
|
291
|
+
- manageiq-appliance_console.gemspec
|
292
|
+
- zanata.xml
|
293
|
+
homepage: https://github.com/ManageIQ/manageiq-appliance_console
|
294
|
+
licenses:
|
295
|
+
- Apache-2.0
|
296
|
+
metadata: {}
|
297
|
+
post_install_message:
|
298
|
+
rdoc_options: []
|
299
|
+
require_paths:
|
300
|
+
- lib
|
301
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
302
|
+
requirements:
|
303
|
+
- - ">="
|
304
|
+
- !ruby/object:Gem::Version
|
305
|
+
version: '0'
|
306
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
307
|
+
requirements:
|
308
|
+
- - ">="
|
309
|
+
- !ruby/object:Gem::Version
|
310
|
+
version: '0'
|
311
|
+
requirements: []
|
312
|
+
rubyforge_project:
|
313
|
+
rubygems_version: 2.6.11
|
314
|
+
signing_key:
|
315
|
+
specification_version: 4
|
316
|
+
summary: ManageIQ Appliance Console
|
317
|
+
test_files: []
|