foreman_maintain 0.6.15 → 0.7.5
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 +2 -2
- data/definitions/checks/disk/available_space_candlepin.rb +27 -0
- data/definitions/checks/foreman_tasks/not_paused.rb +10 -13
- data/definitions/checks/package_manager/yum/validate_yum_config.rb +51 -0
- data/definitions/features/candlepin.rb +4 -0
- data/definitions/features/foreman_cockpit.rb +15 -0
- data/definitions/features/foreman_tasks.rb +12 -2
- data/definitions/features/pulpcore.rb +20 -5
- data/definitions/procedures/backup/accessibility_confirmation.rb +1 -1
- data/definitions/procedures/backup/online/safety_confirmation.rb +11 -6
- data/definitions/procedures/backup/snapshot/logical_volume_confirmation.rb +1 -1
- data/definitions/procedures/content/migration_stats.rb +12 -0
- data/definitions/procedures/content/prepare.rb +2 -6
- data/definitions/procedures/content/prepare_abort.rb +12 -0
- data/definitions/procedures/content/switchover.rb +1 -1
- data/definitions/procedures/foreman_tasks/delete.rb +3 -4
- data/definitions/procedures/foreman_tasks/resume.rb +5 -0
- data/definitions/procedures/packages/installer_confirmation.rb +1 -1
- data/definitions/procedures/packages/update_all_confirmation.rb +1 -1
- data/definitions/procedures/prep_6_10_upgrade.rb +29 -0
- data/definitions/procedures/restore/confirmation.rb +1 -1
- data/definitions/procedures/restore/installer_reset.rb +10 -1
- data/definitions/scenarios/backup.rb +2 -0
- data/definitions/scenarios/content.rb +52 -3
- data/definitions/scenarios/prep_6_10_upgrade.rb +13 -0
- data/definitions/scenarios/upgrade_to_capsule_6_9.rb +88 -0
- data/definitions/scenarios/upgrade_to_capsule_6_9_z.rb +88 -0
- data/definitions/scenarios/upgrade_to_satellite_6_9.rb +90 -0
- data/definitions/scenarios/upgrade_to_satellite_6_9_z.rb +89 -0
- data/lib/foreman_maintain.rb +1 -1
- data/lib/foreman_maintain/cli.rb +8 -0
- data/lib/foreman_maintain/cli/content_command.rb +17 -2
- data/lib/foreman_maintain/concerns/downstream.rb +4 -0
- data/lib/foreman_maintain/package_manager/dnf.rb +1 -0
- data/lib/foreman_maintain/reporter.rb +18 -13
- data/lib/foreman_maintain/reporter/cli_reporter.rb +24 -11
- data/lib/foreman_maintain/runner.rb +13 -8
- data/lib/foreman_maintain/scenario.rb +4 -0
- data/lib/foreman_maintain/utils/backup.rb +1 -1
- data/lib/foreman_maintain/utils/disk/io_device.rb +4 -0
- data/lib/foreman_maintain/utils/service/systemd.rb +11 -1
- data/lib/foreman_maintain/version.rb +1 -1
- metadata +14 -4
- data/definitions/checks/yum_exclude.rb +0 -21
data/lib/foreman_maintain.rb
CHANGED
@@ -155,7 +155,7 @@ module ForemanMaintain
|
|
155
155
|
def pkg_and_cmd_name
|
156
156
|
instance_feature = ForemanMaintain.available_features(:label => :instance).first
|
157
157
|
if instance_feature.downstream
|
158
|
-
return
|
158
|
+
return instance_feature.downstream.fm_pkg_and_cmd_name
|
159
159
|
end
|
160
160
|
|
161
161
|
[main_package_name, 'foreman-maintain']
|
data/lib/foreman_maintain/cli.rb
CHANGED
@@ -27,6 +27,14 @@ module ForemanMaintain
|
|
27
27
|
subcommand 'content', 'Content related commands', ContentCommand
|
28
28
|
subcommand 'maintenance-mode', 'Control maintenance-mode for application',
|
29
29
|
MaintenanceModeCommand
|
30
|
+
if ForemanMaintain.detector.feature(:satellite) &&
|
31
|
+
ForemanMaintain.detector.feature(:satellite).current_minor_version == '6.9'
|
32
|
+
subcommand 'prep-6.10-upgrade', 'Preparations for the Satellite 6.10 upgrade' do
|
33
|
+
def execute
|
34
|
+
run_scenarios_and_exit(Scenarios::Prep610Upgrade.new)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
30
38
|
|
31
39
|
def run(*arguments)
|
32
40
|
logger.info("Running foreman-maintain command with arguments #{arguments.inspect}")
|
@@ -7,9 +7,24 @@ module ForemanMaintain
|
|
7
7
|
end
|
8
8
|
end
|
9
9
|
|
10
|
-
|
10
|
+
unless ForemanMaintain.detector.feature(:satellite) ||
|
11
|
+
ForemanMaintain.detector.feature(:capsule)
|
12
|
+
subcommand 'switchover', 'Switch support for certain content from Pulp 2 to Pulp 3' do
|
13
|
+
def execute
|
14
|
+
run_scenarios_and_exit(Scenarios::Content::Switchover.new)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
subcommand 'prepare-abort', 'Abort all running Pulp 2 to Pulp 3 migration tasks' do
|
20
|
+
def execute
|
21
|
+
run_scenarios_and_exit(Scenarios::Content::PrepareAbort.new)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
subcommand 'migration-stats', 'Retrieve Pulp 2 to Pulp 3 migration statistics' do
|
11
26
|
def execute
|
12
|
-
run_scenarios_and_exit(Scenarios::Content::
|
27
|
+
run_scenarios_and_exit(Scenarios::Content::MigrationStats.new)
|
13
28
|
end
|
14
29
|
end
|
15
30
|
end
|
@@ -22,12 +22,13 @@ module ForemanMaintain
|
|
22
22
|
|
23
23
|
def after_scenario_finishes(_scenario); end
|
24
24
|
|
25
|
-
def on_next_steps(steps)
|
25
|
+
def on_next_steps(steps, run_strategy = :fail_fast)
|
26
26
|
return if steps.empty?
|
27
|
+
|
27
28
|
if steps.size > 1
|
28
|
-
multiple_steps_decision(steps)
|
29
|
+
multiple_steps_decision(steps, run_strategy)
|
29
30
|
else
|
30
|
-
single_step_decision(steps.first)
|
31
|
+
single_step_decision(steps.first, run_strategy)
|
31
32
|
end
|
32
33
|
end
|
33
34
|
|
@@ -46,17 +47,19 @@ module ForemanMaintain
|
|
46
47
|
end
|
47
48
|
|
48
49
|
# simple yes/no question, returns :yes, :no or :quit
|
49
|
-
|
50
|
-
|
51
|
-
|
50
|
+
# rubocop:disable Metrics/LineLength
|
51
|
+
def ask_decision(message, actions_msg: 'y(yes), n(no), q(quit)', assumeyes: assumeyes?, run_strategy: :fail_fast)
|
52
|
+
actions_msg = 'y(yes), n(no)' if run_strategy == :fail_slow
|
52
53
|
if assumeyes
|
53
54
|
print("#{message} (assuming yes)")
|
54
55
|
return :yes
|
55
56
|
end
|
57
|
+
|
56
58
|
until_valid_decision do
|
57
|
-
filter_decision(ask("#{message}, [
|
59
|
+
filter_decision(ask("#{message}, [#{actions_msg}]"))
|
58
60
|
end
|
59
61
|
end
|
62
|
+
# rubocop:enable Metrics/LineLength
|
60
63
|
|
61
64
|
def assumeyes=(assume)
|
62
65
|
@assumeyes = !!assume
|
@@ -64,8 +67,8 @@ module ForemanMaintain
|
|
64
67
|
|
65
68
|
private
|
66
69
|
|
67
|
-
def single_step_decision(step)
|
68
|
-
answer = ask_decision("Continue with step [#{step.description}]?")
|
70
|
+
def single_step_decision(step, run_strategy)
|
71
|
+
answer = ask_decision("Continue with step [#{step.description}]?", run_strategy: run_strategy)
|
69
72
|
if answer == :yes
|
70
73
|
step
|
71
74
|
else
|
@@ -73,12 +76,12 @@ module ForemanMaintain
|
|
73
76
|
end
|
74
77
|
end
|
75
78
|
|
76
|
-
def multiple_steps_decision(steps)
|
79
|
+
def multiple_steps_decision(steps, run_strategy)
|
77
80
|
puts 'There are multiple steps to proceed:'
|
78
81
|
steps.each_with_index do |step, index|
|
79
82
|
puts "#{index + 1}) #{step.description}"
|
80
83
|
end
|
81
|
-
ask_to_select('Select step to continue', steps,
|
84
|
+
ask_to_select('Select step to continue', steps, run_strategy)
|
82
85
|
end
|
83
86
|
|
84
87
|
def filter_decision(answer)
|
@@ -90,13 +93,15 @@ module ForemanMaintain
|
|
90
93
|
end
|
91
94
|
|
92
95
|
# rubocop:disable Metrics/MethodLength
|
93
|
-
def ask_to_select(message, steps)
|
96
|
+
def ask_to_select(message, steps, run_strategy)
|
94
97
|
if assumeyes?
|
95
98
|
puts('(assuming first option)')
|
96
99
|
return steps.first
|
97
100
|
end
|
98
101
|
until_valid_decision do
|
99
|
-
|
102
|
+
actions = run_strategy == :fail_slow ? 'n(next)' : 'n(next), q(quit)'
|
103
|
+
|
104
|
+
answer = ask("#{message}, [#{actions}]")
|
100
105
|
if answer =~ /^\d+$/ && (answer.to_i - 1) < steps.size
|
101
106
|
steps[answer.to_i - 1]
|
102
107
|
else
|
@@ -67,6 +67,7 @@ module ForemanMaintain
|
|
67
67
|
end
|
68
68
|
end
|
69
69
|
|
70
|
+
attr_accessor :select_option_counter
|
70
71
|
attr_reader :last_line, :max_length
|
71
72
|
|
72
73
|
def initialize(stdout = STDOUT, stdin = STDIN, options = {})
|
@@ -81,6 +82,7 @@ module ForemanMaintain
|
|
81
82
|
@spinner = Spinner.new(self)
|
82
83
|
@spinner.start_spinner if @stdout.tty?
|
83
84
|
@last_line = ''
|
85
|
+
@select_option_counter = 0
|
84
86
|
end
|
85
87
|
|
86
88
|
def before_scenario_starts(scenario)
|
@@ -167,8 +169,9 @@ module ForemanMaintain
|
|
167
169
|
@assumeyes
|
168
170
|
end
|
169
171
|
|
170
|
-
def single_step_decision(step)
|
171
|
-
answer = ask_decision("Continue with step [#{step.runtime_message}]?"
|
172
|
+
def single_step_decision(step, run_strategy)
|
173
|
+
answer = ask_decision("Continue with step [#{step.runtime_message}]?",
|
174
|
+
run_strategy: run_strategy)
|
172
175
|
if answer == :yes
|
173
176
|
step
|
174
177
|
else
|
@@ -176,25 +179,28 @@ module ForemanMaintain
|
|
176
179
|
end
|
177
180
|
end
|
178
181
|
|
179
|
-
def multiple_steps_decision(steps)
|
182
|
+
def multiple_steps_decision(steps, run_strategy)
|
180
183
|
puts 'There are multiple steps to proceed:'
|
181
184
|
steps.each_with_index do |step, index|
|
182
185
|
puts "#{index + 1}) #{step.runtime_message}"
|
183
186
|
end
|
184
|
-
ask_to_select('Select step to continue', steps,
|
187
|
+
ask_to_select('Select step to continue', steps, run_strategy)
|
185
188
|
end
|
186
189
|
|
187
|
-
|
190
|
+
# rubocop:disable Metrics/LineLength
|
191
|
+
def ask_decision(message, actions_msg: 'y(yes), n(no), q(quit)', ignore_assumeyes: false, run_strategy: :fail_fast)
|
192
|
+
actions_msg = 'y(yes), n(no)' if run_strategy == :fail_slow
|
188
193
|
if !ignore_assumeyes && assumeyes?
|
189
194
|
print("#{message} (assuming yes)\n")
|
190
195
|
return :yes
|
191
196
|
end
|
192
197
|
until_valid_decision do
|
193
|
-
filter_decision(ask("#{message}, [#{
|
198
|
+
filter_decision(ask("#{message}, [#{actions_msg}]"))
|
194
199
|
end
|
195
200
|
ensure
|
196
201
|
clear_line
|
197
202
|
end
|
203
|
+
# rubocop:enable Metrics/LineLength
|
198
204
|
|
199
205
|
def filter_decision(answer)
|
200
206
|
decision = nil
|
@@ -206,13 +212,17 @@ module ForemanMaintain
|
|
206
212
|
end
|
207
213
|
|
208
214
|
# rubocop:disable Metrics/MethodLength
|
209
|
-
def ask_to_select(message, steps)
|
215
|
+
def ask_to_select(message, steps, run_strategy)
|
210
216
|
if assumeyes?
|
211
|
-
|
212
|
-
|
217
|
+
step = steps[@select_option_counter]
|
218
|
+
@select_option_counter += 1
|
219
|
+
puts("(assuming option #{@select_option_counter})")
|
220
|
+
return step
|
213
221
|
end
|
222
|
+
|
214
223
|
until_valid_decision do
|
215
|
-
|
224
|
+
actions = run_strategy == :fail_slow ? 'n(next)' : 'n(next), q(quit)'
|
225
|
+
answer = ask("#{message}, [#{actions}]")
|
216
226
|
if answer =~ /^\d+$/ && (answer.to_i - 1) < steps.size
|
217
227
|
steps[answer.to_i - 1]
|
218
228
|
else
|
@@ -277,6 +287,7 @@ module ForemanMaintain
|
|
277
287
|
# rubocop:disable Metrics/MethodLength, Metrics/AbcSize
|
278
288
|
def scenario_failure_message(scenario)
|
279
289
|
return if scenario.passed? && !scenario.warning?
|
290
|
+
|
280
291
|
message = []
|
281
292
|
message << <<-MESSAGE.strip_heredoc
|
282
293
|
Scenario [#{scenario.description}] failed.
|
@@ -293,13 +304,15 @@ module ForemanMaintain
|
|
293
304
|
end
|
294
305
|
|
295
306
|
steps_with_error = scenario.steps_with_error(:whitelisted => false)
|
307
|
+
steps_with_skipped = scenario.steps_with_skipped(:whitelisted => true)
|
308
|
+
steps_to_whitelist = steps_with_error + steps_with_skipped
|
296
309
|
unless steps_with_error.empty?
|
297
310
|
message << format(<<-MESSAGE.strip_heredoc, format_steps(steps_with_error, "\n", 2))
|
298
311
|
The following steps ended up in failing state:
|
299
312
|
|
300
313
|
%s
|
301
314
|
MESSAGE
|
302
|
-
whitelist_labels =
|
315
|
+
whitelist_labels = steps_to_whitelist.map(&:label_dashed).join(',')
|
303
316
|
recommend << format(<<-MESSAGE.strip_heredoc, whitelist_labels)
|
304
317
|
Resolve the failed steps and rerun
|
305
318
|
the command. In case the failures are false positives,
|
@@ -18,6 +18,7 @@ module ForemanMaintain
|
|
18
18
|
@last_scenario = nil
|
19
19
|
@last_scenario_continuation_confirmed = false
|
20
20
|
@exit_code = 0
|
21
|
+
@procedure_step_counter = 0
|
21
22
|
end
|
22
23
|
|
23
24
|
def quit?
|
@@ -70,7 +71,8 @@ module ForemanMaintain
|
|
70
71
|
:quit
|
71
72
|
elsif @last_scenario.steps_with_warning(:whitelisted => false).any?
|
72
73
|
@last_scenario_continuation_confirmed = true
|
73
|
-
reporter.ask_decision("Continue with [#{scenario.description}]"
|
74
|
+
reporter.ask_decision("Continue with [#{scenario.description}]",
|
75
|
+
run_strategy: scenario.run_strategy)
|
74
76
|
end
|
75
77
|
|
76
78
|
ask_to_quit if [:quit, :no].include?(decision)
|
@@ -131,7 +133,7 @@ module ForemanMaintain
|
|
131
133
|
if execution.aborted?
|
132
134
|
ask_to_quit
|
133
135
|
else
|
134
|
-
next_steps_decision = ask_about_offered_steps(step)
|
136
|
+
next_steps_decision = ask_about_offered_steps(step, scenario)
|
135
137
|
if next_steps_decision != :yes &&
|
136
138
|
execution.fail? && !execution.whitelisted? &&
|
137
139
|
scenario.run_strategy == :fail_fast
|
@@ -141,15 +143,18 @@ module ForemanMaintain
|
|
141
143
|
end
|
142
144
|
|
143
145
|
# rubocop:disable Metrics/MethodLength
|
144
|
-
def ask_about_offered_steps(step)
|
145
|
-
if assumeyes? && rerun_check?(step)
|
146
|
-
@reporter.puts 'Check still failing after attempt to fix. Skipping'
|
147
|
-
return :no
|
148
|
-
end
|
146
|
+
def ask_about_offered_steps(step, scenario)
|
149
147
|
if step.next_steps && !step.next_steps.empty?
|
150
148
|
@last_decision_step = step
|
149
|
+
@procedure_step_counter += 1
|
151
150
|
steps = step.next_steps.map(&:ensure_instance)
|
152
|
-
|
151
|
+
if assumeyes? && @procedure_step_counter > steps.length
|
152
|
+
@procedure_step_counter = 0
|
153
|
+
@reporter.select_option_counter = 0
|
154
|
+
@reporter.puts 'Check still failing after attempt to fix. Skipping'
|
155
|
+
return :no
|
156
|
+
end
|
157
|
+
decision = @reporter.on_next_steps(steps, scenario.run_strategy)
|
153
158
|
case decision
|
154
159
|
when :quit
|
155
160
|
ask_to_quit
|
@@ -116,6 +116,10 @@ module ForemanMaintain
|
|
116
116
|
filter_whitelisted(executed_steps.find_all(&:warning?), options)
|
117
117
|
end
|
118
118
|
|
119
|
+
def steps_with_skipped(options = {})
|
120
|
+
filter_whitelisted(executed_steps.find_all(&:skipped?), options)
|
121
|
+
end
|
122
|
+
|
119
123
|
def filter_whitelisted(steps, options)
|
120
124
|
options.validate_options!(:whitelisted)
|
121
125
|
if options.key?(:whitelisted)
|
@@ -163,7 +163,7 @@ module ForemanMaintain
|
|
163
163
|
def validate_hostname?
|
164
164
|
# make sure that the system hostname is the same as the backup
|
165
165
|
config_tarball = file_map[:config_files][:path]
|
166
|
-
tar_cmd = "tar zxf #{config_tarball} etc/httpd/conf/httpd.conf --to-stdout"
|
166
|
+
tar_cmd = "tar zxf #{config_tarball} etc/httpd/conf/httpd.conf --to-stdout --occurrence=1"
|
167
167
|
status, httpd_config = execute_with_status(tar_cmd)
|
168
168
|
|
169
169
|
# Incremental backups sometimes don't include httpd.conf. Since a "base" backup
|
@@ -22,6 +22,10 @@ module ForemanMaintain
|
|
22
22
|
convert_kb_to_mb(execute!("df #{dir}|awk {'print $4'}|tail -1").to_i)
|
23
23
|
end
|
24
24
|
|
25
|
+
def space_used_in_percent
|
26
|
+
execute!("df #{dir}|awk {'print $5'}|tail -1").to_i
|
27
|
+
end
|
28
|
+
|
25
29
|
private
|
26
30
|
|
27
31
|
# In fio command, --direct option bypass the cache page
|
@@ -51,19 +51,29 @@ module ForemanMaintain::Utils
|
|
51
51
|
|
52
52
|
def exist?
|
53
53
|
if @sys.systemd_installed?
|
54
|
-
systemd =
|
54
|
+
systemd = service_enabled_status
|
55
55
|
systemd == 'enabled' || systemd == 'disabled'
|
56
56
|
else
|
57
57
|
File.exist?("/etc/init.d/#{@name}")
|
58
58
|
end
|
59
59
|
end
|
60
60
|
|
61
|
+
def enabled?
|
62
|
+
if @sys.systemd_installed?
|
63
|
+
service_enabled_status == 'enabled'
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
61
67
|
private
|
62
68
|
|
63
69
|
def execute(action, options = {})
|
64
70
|
@sys.execute_with_status(command(action, options))
|
65
71
|
end
|
66
72
|
|
73
|
+
def service_enabled_status
|
74
|
+
@sys.execute("systemctl is-enabled #{@name} 2>&1 | tail -1").strip
|
75
|
+
end
|
76
|
+
|
67
77
|
def skip_enablement_message(action, name)
|
68
78
|
# Enable and disable does not work well with globs since they treat them literally.
|
69
79
|
# We are skipping the pulpcore-workers@* for these actions until they are configured in
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_maintain
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Nečas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: clamp
|
@@ -125,6 +125,7 @@ files:
|
|
125
125
|
- definitions/checks/check_hotfix_installed.rb
|
126
126
|
- definitions/checks/check_tmout.rb
|
127
127
|
- definitions/checks/disk/available_space.rb
|
128
|
+
- definitions/checks/disk/available_space_candlepin.rb
|
128
129
|
- definitions/checks/disk/performance.rb
|
129
130
|
- definitions/checks/env_proxy.rb
|
130
131
|
- definitions/checks/foreman/check_checkpoint_segments.rb
|
@@ -147,6 +148,7 @@ files:
|
|
147
148
|
- definitions/checks/mongo/db_up.rb
|
148
149
|
- definitions/checks/mongo/tools_installed.rb
|
149
150
|
- definitions/checks/original_assets.rb
|
151
|
+
- definitions/checks/package_manager/yum/validate_yum_config.rb
|
150
152
|
- definitions/checks/pulpcore/db_up.rb
|
151
153
|
- definitions/checks/puppet/provide_upgrade_guide.rb
|
152
154
|
- definitions/checks/puppet/verify_no_empty_cacert_requests.rb
|
@@ -161,7 +163,6 @@ files:
|
|
161
163
|
- definitions/checks/services_up.rb
|
162
164
|
- definitions/checks/system_registration.rb
|
163
165
|
- definitions/checks/version_locking_enabled.rb
|
164
|
-
- definitions/checks/yum_exclude.rb
|
165
166
|
- definitions/features/apache.rb
|
166
167
|
- definitions/features/candlepin.rb
|
167
168
|
- definitions/features/candlepin_database.rb
|
@@ -170,6 +171,7 @@ files:
|
|
170
171
|
- definitions/features/dynflow_sidekiq.rb
|
171
172
|
- definitions/features/foreman_1_11_x.rb
|
172
173
|
- definitions/features/foreman_1_7_x.rb
|
174
|
+
- definitions/features/foreman_cockpit.rb
|
173
175
|
- definitions/features/foreman_database.rb
|
174
176
|
- definitions/features/foreman_openscap.rb
|
175
177
|
- definitions/features/foreman_proxy.rb
|
@@ -220,7 +222,9 @@ files:
|
|
220
222
|
- definitions/procedures/backup/snapshot/mount_pulpcore_db.rb
|
221
223
|
- definitions/procedures/backup/snapshot/prepare_mount.rb
|
222
224
|
- definitions/procedures/candlepin/delete_orphaned_records_from_env_content.rb
|
225
|
+
- definitions/procedures/content/migration_stats.rb
|
223
226
|
- definitions/procedures/content/prepare.rb
|
227
|
+
- definitions/procedures/content/prepare_abort.rb
|
224
228
|
- definitions/procedures/content/switchover.rb
|
225
229
|
- definitions/procedures/crond/start.rb
|
226
230
|
- definitions/procedures/crond/stop.rb
|
@@ -253,6 +257,7 @@ files:
|
|
253
257
|
- definitions/procedures/packages/update.rb
|
254
258
|
- definitions/procedures/packages/update_all_confirmation.rb
|
255
259
|
- definitions/procedures/passenger_recycler.rb
|
260
|
+
- definitions/procedures/prep_6_10_upgrade.rb
|
256
261
|
- definitions/procedures/pulp/migrate.rb
|
257
262
|
- definitions/procedures/pulpcore/migrate.rb
|
258
263
|
- definitions/procedures/puppet/delete_empty_ca_cert_request_files.rb
|
@@ -288,10 +293,13 @@ files:
|
|
288
293
|
- definitions/scenarios/content.rb
|
289
294
|
- definitions/scenarios/maintenance_mode.rb
|
290
295
|
- definitions/scenarios/packages.rb
|
296
|
+
- definitions/scenarios/prep_6_10_upgrade.rb
|
291
297
|
- definitions/scenarios/restore.rb
|
292
298
|
- definitions/scenarios/services.rb
|
293
299
|
- definitions/scenarios/upgrade_to_capsule_6_8.rb
|
294
300
|
- definitions/scenarios/upgrade_to_capsule_6_8_z.rb
|
301
|
+
- definitions/scenarios/upgrade_to_capsule_6_9.rb
|
302
|
+
- definitions/scenarios/upgrade_to_capsule_6_9_z.rb
|
295
303
|
- definitions/scenarios/upgrade_to_satellite_6_2.rb
|
296
304
|
- definitions/scenarios/upgrade_to_satellite_6_2_z.rb
|
297
305
|
- definitions/scenarios/upgrade_to_satellite_6_3.rb
|
@@ -306,6 +314,8 @@ files:
|
|
306
314
|
- definitions/scenarios/upgrade_to_satellite_6_7_z.rb
|
307
315
|
- definitions/scenarios/upgrade_to_satellite_6_8.rb
|
308
316
|
- definitions/scenarios/upgrade_to_satellite_6_8_z.rb
|
317
|
+
- definitions/scenarios/upgrade_to_satellite_6_9.rb
|
318
|
+
- definitions/scenarios/upgrade_to_satellite_6_9_z.rb
|
309
319
|
- extras/foreman-maintain.sh
|
310
320
|
- extras/foreman_protector/foreman-protector.conf
|
311
321
|
- extras/foreman_protector/foreman-protector.py
|
@@ -406,7 +416,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
406
416
|
- !ruby/object:Gem::Version
|
407
417
|
version: '0'
|
408
418
|
requirements: []
|
409
|
-
rubygems_version: 3.0.
|
419
|
+
rubygems_version: 3.0.3
|
410
420
|
signing_key:
|
411
421
|
specification_version: 4
|
412
422
|
summary: Foreman maintenance tool belt
|