foreman_maintain 1.1.7 → 1.1.8
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: f2f1f46248f5eb70dad12acfe77a4bb729e1e1dd4d81d4bcf32ebbc50e2f9df1
|
|
4
|
+
data.tar.gz: e41ba501ec33dd5f329b7cdc11594d5c26935636696ae5f944830a02f08d30cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70ae7599b2536967aab51c852a404c07ec47bb451cf6f55e3972c9e314c0f6a9500871a7e665941520756d99c35ec5d2e009fd5983fa223c844d542bf214baf3
|
|
7
|
+
data.tar.gz: 41034d192e3711ca505f270b2d8db559d036e08bebbb0357711030021ff9980320d3b43d8ab89223cf290efbf69ffe363b18c74c5a682378ffd26a61b9e05b93
|
|
@@ -2,11 +2,11 @@ module ForemanMaintain::Scenarios
|
|
|
2
2
|
class SelfUpgradeBase < ForemanMaintain::Scenario
|
|
3
3
|
include ForemanMaintain::Concerns::Downstream
|
|
4
4
|
def target_version
|
|
5
|
-
@target_version ||= current_version.bump
|
|
5
|
+
@target_version ||= Gem::Version.new(current_version).bump.to_s
|
|
6
6
|
end
|
|
7
7
|
|
|
8
8
|
def current_version
|
|
9
|
-
feature(:instance).downstream.
|
|
9
|
+
feature(:instance).downstream.current_version.to_s[/^\d+\.\d+\.\d+/]
|
|
10
10
|
end
|
|
11
11
|
|
|
12
12
|
def maintenance_repo_label
|
|
@@ -20,7 +20,12 @@ yum-utils
|
|
|
20
20
|
# el7 psql client dependencies
|
|
21
21
|
rh-postgresql12-postgresql
|
|
22
22
|
rh-postgresql12-postgresql-libs
|
|
23
|
+
rh-postgresql12-postgresql-syspaths
|
|
23
24
|
rh-postgresql12-runtime
|
|
25
|
+
scl-utils
|
|
26
|
+
# el8 psql client dependencies
|
|
27
|
+
postgresql
|
|
28
|
+
libpq
|
|
24
29
|
# el8 yum-utils dependencies
|
|
25
30
|
dnf-plugins-core
|
|
26
31
|
python3-dnf-plugins-core
|
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: 1.1.
|
|
4
|
+
version: 1.1.8
|
|
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-
|
|
11
|
+
date: 2022-10-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: clamp
|