foreman_maintain 0.8.26 → 0.8.27
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b9456621c95c1feb4fdf10d4bd85cc22d2d22f667c9d8b227d7662c7575edc20
|
|
4
|
+
data.tar.gz: '09ae4ff692aac1550ade1264662014671c78a5890f007180a9f28e67a090f240'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d35101818f38bed03e8e08271fc1b73e34fb10b5db613bb094dac1d32d375f7e2b5061217e487a1130f78a35ac287b1ee49426d60af366c002b2d4f2ada81b4d
|
|
7
|
+
data.tar.gz: 4f00f5a90c9e3e3f9cf920136e78c276cccdc9b905b1dbb87453729a02aab8c25cbffcc961ea2f301e4f96825d0b4e2e814fcba11385bb0c4c37b7f952395c7e
|
|
@@ -5,7 +5,9 @@ module Procedures::Installer
|
|
|
5
5
|
end
|
|
6
6
|
|
|
7
7
|
def run
|
|
8
|
-
|
|
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
|
|
@@ -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
|
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.
|
|
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-04-
|
|
11
|
+
date: 2022-04-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: clamp
|