foreman_remote_execution 14.1.3 → 14.1.4
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/app/views/templates/script/convert2rhel_analyze.erb +14 -1
- data/lib/foreman_remote_execution/version.rb +1 -1
- data/webpack/react_app/components/TargetingHosts/TargetingHostsPage.js +1 -1
- data/webpack/react_app/components/TargetingHosts/__tests__/__snapshots__/TargetingHostsPage.test.js.snap +0 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a300266f1fb00313f0bc59f37573802bbcf230fca5e9867bcee11bdc8279a93
|
|
4
|
+
data.tar.gz: bc52a77d346cd77c834fd134a872fab19c8b12fc98c30f27deba4a7a64a776b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba0a20114b7d30cf6cc7fe236b34794ab98163cc9bbd6d78a02e3573c996b2fb0eaccdf96af081cfc96afb0c8a95af8ad9ec906d2b8e103806ebe6d1d74bc413
|
|
7
|
+
data.tar.gz: fe6aa4f48b414729aa0678589b4dc55eab153b5c6505edb21700601d7bb993b4cae2465ccb33eeb24becb12c7b68be45d7a88bea67507b8917b2ad23acf738ba
|
|
@@ -5,7 +5,20 @@ model: JobTemplate
|
|
|
5
5
|
job_category: Convert 2 RHEL
|
|
6
6
|
provider_type: script
|
|
7
7
|
kind: job_template
|
|
8
|
+
template_inputs:
|
|
9
|
+
- name: ELS
|
|
10
|
+
required: true
|
|
11
|
+
input_type: user
|
|
12
|
+
description: Use an Extended Lifecycle Support (ELS) add-on subscription
|
|
13
|
+
advanced: false
|
|
14
|
+
value_type: plain
|
|
15
|
+
options: "true\nfalse"
|
|
16
|
+
default: "true"
|
|
17
|
+
hidden_value: false
|
|
8
18
|
%>
|
|
19
|
+
<%-
|
|
20
|
+
els = input('ELS') == "true" ? "--els" : ""
|
|
21
|
+
-%>
|
|
9
22
|
<% if @host.operatingsystem.family == 'Redhat' -%>
|
|
10
23
|
if ! [ $(id -u) -eq 0 ]; then
|
|
11
24
|
echo "You must run convert2rhel as a root user."
|
|
@@ -18,7 +31,7 @@ fi
|
|
|
18
31
|
|
|
19
32
|
export CONVERT2RHEL_THROUGH_FOREMAN=1
|
|
20
33
|
|
|
21
|
-
/usr/bin/convert2rhel analyze -y
|
|
34
|
+
/usr/bin/convert2rhel analyze -y <%= els %>
|
|
22
35
|
|
|
23
36
|
# Workaround for https://issues.redhat.com/browse/RHELC-1280
|
|
24
37
|
subscription-manager facts --update
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: foreman_remote_execution
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 14.1.
|
|
4
|
+
version: 14.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Foreman Remote Execution team
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-12-
|
|
11
|
+
date: 2024-12-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: deface
|
|
@@ -579,7 +579,7 @@ homepage: https://github.com/theforeman/foreman_remote_execution
|
|
|
579
579
|
licenses:
|
|
580
580
|
- GPL-3.0
|
|
581
581
|
metadata: {}
|
|
582
|
-
post_install_message:
|
|
582
|
+
post_install_message:
|
|
583
583
|
rdoc_options: []
|
|
584
584
|
require_paths:
|
|
585
585
|
- lib
|
|
@@ -598,7 +598,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
598
598
|
version: '0'
|
|
599
599
|
requirements: []
|
|
600
600
|
rubygems_version: 3.3.27
|
|
601
|
-
signing_key:
|
|
601
|
+
signing_key:
|
|
602
602
|
specification_version: 4
|
|
603
603
|
summary: A plugin bringing remote execution to the Foreman, completing the config
|
|
604
604
|
management functionality with remote management functionality.
|