foreman_maintain 0.8.24 → 0.8.27

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 164031605ab91a858e8051175df3cfa485cb8d7641495649b56fc369c8f86901
4
- data.tar.gz: 34bff6ed46469b2de1f936c4b9fb9a292e56f3fbef6084c0f2d9f84d7d5a8389
3
+ metadata.gz: b9456621c95c1feb4fdf10d4bd85cc22d2d22f667c9d8b227d7662c7575edc20
4
+ data.tar.gz: '09ae4ff692aac1550ade1264662014671c78a5890f007180a9f28e67a090f240'
5
5
  SHA512:
6
- metadata.gz: bcce432d5b166c898ecfa33e2a215c8dde59011c72a9f356a877c16caad70da945e06742b4bf867f70963d095ca5520f0fd7aea38893c8ea28a183f08f45ba3f
7
- data.tar.gz: b88af64fe1462a21f0f53c42ae8d67fd940208ccb2234af5ad043fd0ac0121726aec6b215d6b5fbe7dd3c747f1b8aa5f797953cab1b757dd69c7c2c51656a084
6
+ metadata.gz: d35101818f38bed03e8e08271fc1b73e34fb10b5db613bb094dac1d32d375f7e2b5061217e487a1130f78a35ac287b1ee49426d60af366c002b2d4f2ada81b4d
7
+ data.tar.gz: 4f00f5a90c9e3e3f9cf920136e78c276cccdc9b905b1dbb87453729a02aab8c25cbffcc961ea2f301e4f96825d0b4e2e814fcba11385bb0c4c37b7f952395c7e
@@ -82,18 +82,22 @@ class Features::ForemanTasks < ForemanMaintain::Feature
82
82
  def delete(state)
83
83
  tasks_condition = condition(state)
84
84
 
85
- feature(:foreman_database).psql(<<-SQL)
86
- BEGIN;
87
- DELETE FROM dynflow_steps USING foreman_tasks_tasks WHERE (foreman_tasks_tasks.external_id = dynflow_steps.execution_plan_uuid::varchar) AND #{tasks_condition};
88
- DELETE FROM dynflow_actions USING foreman_tasks_tasks WHERE (foreman_tasks_tasks.external_id = dynflow_actions.execution_plan_uuid::varchar) AND #{tasks_condition};
89
- DELETE FROM dynflow_execution_plans USING foreman_tasks_tasks WHERE (foreman_tasks_tasks.external_id = dynflow_execution_plans.uuid::varchar) AND #{tasks_condition};
90
- DELETE FROM foreman_tasks_tasks WHERE #{tasks_condition};
91
- -- Delete locks and links which may now be orphaned
92
- DELETE FROM foreman_tasks_locks as ftl where ftl.id NOT IN (SELECT id FROM foreman_tasks_tasks);
93
- DELETE FROM foreman_tasks_links as ftl where ftl.id NOT IN (SELECT id FROM foreman_tasks_tasks);
94
- COMMIT;
85
+ sql = <<-SQL
86
+ DELETE FROM dynflow_steps USING foreman_tasks_tasks WHERE (foreman_tasks_tasks.external_id = dynflow_steps.execution_plan_uuid::varchar) AND #{tasks_condition};
87
+ DELETE FROM dynflow_actions USING foreman_tasks_tasks WHERE (foreman_tasks_tasks.external_id = dynflow_actions.execution_plan_uuid::varchar) AND #{tasks_condition};
88
+ DELETE FROM dynflow_execution_plans USING foreman_tasks_tasks WHERE (foreman_tasks_tasks.external_id = dynflow_execution_plans.uuid::varchar) AND #{tasks_condition};
89
+ DELETE FROM foreman_tasks_tasks WHERE #{tasks_condition};
90
+ -- Delete locks and links which may now be orphaned
91
+ DELETE FROM foreman_tasks_locks as ftl where ftl.task_id NOT IN (SELECT id FROM foreman_tasks_tasks);
95
92
  SQL
96
93
 
94
+ if check_min_version(foreman_plugin_name('foreman-tasks'), '4.0.0')
95
+ sql += 'DELETE FROM foreman_tasks_links as ftl ' \
96
+ 'where ftl.task_id NOT IN (SELECT id FROM foreman_tasks_tasks);'
97
+ end
98
+
99
+ feature(:foreman_database).psql("BEGIN; #{sql}; COMMIT;")
100
+
97
101
  count(state)
98
102
  end
99
103
 
@@ -5,7 +5,9 @@ module Procedures::Installer
5
5
  end
6
6
 
7
7
  def run
8
- execute!('foreman-rake upgrade:run')
8
+ # only run this in the Satellite scenario, as in others
9
+ # the installer runs this rake task for us already
10
+ execute!('foreman-rake upgrade:run') if feature(:satellite)
9
11
  end
10
12
  end
11
13
  end
@@ -23,7 +23,15 @@ module Procedures::Pulp
23
23
  '/var/lib/pulp/uploads',
24
24
  '/var/lib/mongodb/',
25
25
  '/var/cache/pulp'
26
- ]
26
+ ].select { |dir| File.directory?(dir) }
27
+ end
28
+
29
+ def pulp_data_dirs_mountpoints
30
+ pulp_data_dirs.select { |d| Pathname(d).mountpoint? }
31
+ end
32
+
33
+ def deletable_pulp_dirs
34
+ @deletable_pulp_dirs ||= pulp_data_dirs - pulp_data_dirs_mountpoints
27
35
  end
28
36
 
29
37
  # rubocop:disable Metrics/MethodLength
@@ -52,11 +60,12 @@ module Procedures::Pulp
52
60
  @installed_pulp_packages
53
61
  end
54
62
 
55
- def data_dir_removal_cmds
56
- pulp_data_dirs.select { |dir| File.directory?(dir) }.map { |dir| "rm -rf #{dir}" }
63
+ def data_dir_removal_cmds(pulp_dirs)
64
+ pulp_dirs.map { |dir| "rm -rf #{dir}" }
57
65
  end
58
66
 
59
- def ask_to_proceed(rm_cmds)
67
+ def ask_to_proceed
68
+ rm_cmds = data_dir_removal_cmds(pulp_data_dirs)
60
69
  question = "\nWARNING: All pulp2 packages will be removed with the following commands:\n"
61
70
  question += "\n# rpm -e #{pulp_packages.join(' ')}" if pulp_packages.any?
62
71
  question += "\n# yum remove rh-mongodb34-*"
@@ -69,11 +78,9 @@ module Procedures::Pulp
69
78
  end
70
79
 
71
80
  def run
72
- rm_cmds = data_dir_removal_cmds
73
-
74
81
  assumeyes_val = @assumeyes.nil? ? assumeyes? : @assumeyes
75
82
 
76
- ask_to_proceed(rm_cmds) unless assumeyes_val
83
+ ask_to_proceed unless assumeyes_val
77
84
 
78
85
  remove_pulp if pulp_packages.any?
79
86
 
@@ -85,7 +92,7 @@ module Procedures::Pulp
85
92
 
86
93
  drop_migrations
87
94
 
88
- delete_pulp_data(rm_cmds) if rm_cmds.any?
95
+ delete_pulp_data
89
96
 
90
97
  restart_pulpcore_services
91
98
  end
@@ -162,12 +169,41 @@ module Procedures::Pulp
162
169
  end
163
170
  # rubocop:enable Metrics/BlockLength
164
171
 
165
- def delete_pulp_data(rm_cmds)
166
- with_spinner('Deleting pulp2 data directories') do |spinner|
167
- rm_cmds.each do |cmd|
168
- execute!(cmd)
172
+ def delete_pulp_data
173
+ non_mountpoints = data_dir_removal_cmds(deletable_pulp_dirs)
174
+ mountpoints = pulp_data_dirs_mountpoints
175
+ with_spinner('') do |spinner|
176
+ if non_mountpoints.any?
177
+ spinner.update('Deleting pulp2 data directories.')
178
+ non_mountpoints.each do |cmd|
179
+ execute!(cmd)
180
+ end
181
+ msg_for_del_non_mountpoints(mountpoints, spinner)
182
+ end
183
+ if mountpoints.any?
184
+ msg_for_del_mountpoints(mountpoints, spinner)
169
185
  end
170
- spinner.update('Done deleting pulp2 data directories')
186
+ end
187
+ end
188
+
189
+ def msg_for_del_non_mountpoints(mountpoints, spinner)
190
+ if mountpoints.empty?
191
+ spinner.update('Done deleting all pulp2 data directories.')
192
+ else
193
+ spinner.update("Deleted: #{deletable_pulp_dirs.join("\n")}")
194
+ end
195
+ end
196
+
197
+ def msg_for_del_mountpoints(mountpoints, spinner)
198
+ _, cmd_name = ForemanMaintain.pkg_and_cmd_name
199
+ if mountpoints.count > 1
200
+ spinner.update("The directories #{mountpoints.join(',')} are individual mountpoints.")
201
+ puts "\nThe #{cmd_name} won't delete these directories.\n"\
202
+ 'You need to remove content and these directories on your own.'
203
+ else
204
+ spinner.update("The directory #{mountpoints.join(',')} is individual mountpoint.")
205
+ puts "\nThe #{cmd_name} won't delete the directory.\n"\
206
+ 'You need to remove content and the directory on your own.'
171
207
  end
172
208
  end
173
209
 
@@ -42,6 +42,8 @@ module ForemanMaintain::Scenarios
42
42
  add_steps_with_context(Procedures::Restore::RegenerateQueues) if backup.online_backup?
43
43
  add_steps_with_context(Procedures::Service::Start,
44
44
  Procedures::Service::DaemonReload)
45
+ add_step(Procedures::Installer::Upgrade.new(:assumeyes => true))
46
+ add_step_with_context(Procedures::Installer::UpgradeRakeTask)
45
47
  add_step_with_context(Procedures::Crond::Start) if feature(:cron)
46
48
  end
47
49
  # rubocop:enable Metrics/MethodLength,Metrics/AbcSize
@@ -1,3 +1,3 @@
1
1
  module ForemanMaintain
2
- VERSION = '0.8.24'.freeze
2
+ VERSION = '0.8.27'.freeze
3
3
  end
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.8.24
4
+ version: 0.8.27
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: 2022-03-09 00:00:00.000000000 Z
11
+ date: 2022-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: clamp