foreman_maintain 0.8.25 → 0.8.26

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: 5fd64b664ab2e4651af4f4c42f19e4418a7e2890537fceac8dd5cd15acdef8fe
4
- data.tar.gz: 906efdc85144a0cc9a62ff45351e8be0f24268337fe42ec4251796ce19031268
3
+ metadata.gz: 07e94dcd8b177dfd099dba0073afd0f231cbe2fd4a1029b6576d587c5cb94f3a
4
+ data.tar.gz: ca3855c666713a17cc2fdb5d995fdfc15237e083a98978964cfd276b44d55e18
5
5
  SHA512:
6
- metadata.gz: dbe5d5ac12761231471d1779aa5f6e0cfc28b204340775b54c7843b888d2f1eb7b2fd10d1eacbc5c31c50aaa320e2e707759601166c9611659f4db7b1d3b52a0
7
- data.tar.gz: 622b67bfef11facd70f05ddb620183c94dc3edd840863a22220956982da2efe33d9982a40ee159809a49a54d0cfcd2371d74b7cb31b56b4350c7a51888f3f4ab
6
+ metadata.gz: 360bc155ca767b7ffd7c1ca17a8e9e669c4b2eb91ddc4148134c4f475af57888ee0938976d07dfaee48b2fa3ead2d8c6e2ab83c060330b42645fcaf9397697ae
7
+ data.tar.gz: 4b6df3189ca5ee87b6051995729a74e9641ac6866fa7bf6330285f5b59f5d29e92a25a332e718967125deddb9525d4ff119ff727b31f4e40ec55b7cf26db2805
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module ForemanMaintain
2
- VERSION = '0.8.25'.freeze
2
+ VERSION = '0.8.26'.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.25
4
+ version: 0.8.26
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-17 00:00:00.000000000 Z
11
+ date: 2022-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: clamp