foreman_remote_execution 13.2.6 → 13.2.7
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89748fdf3243ae9685bbb1e9dc5ed86fce9ce3f85298a05560f0852fb442047f
|
4
|
+
data.tar.gz: 5aea7f465b289412dde7e172a0d33cfcdfc790cb343f0261f9dea6bff3b3476f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3463075ef47ecfc51a954e57d13233533771e79a5c824cc736f7ea26b92187219d87200dad49dd5bb77746987d7c41c3264ab3bcd28fd96a1ec00a7640da877
|
7
|
+
data.tar.gz: 91dcd90e332f5e11c76eaddca395ac91db7d804e90cc48591db98fd82e69083986082c03f971479dacad9f50e369455b7ecb822925617b5bc80cf602e76486cf
|
@@ -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: false
|
11
|
+
input_type: user
|
12
|
+
description: Use an Extended Lifecycle Support (ELS) add-on subscription
|
13
|
+
advanced: false
|
14
|
+
value_type: plain
|
15
|
+
options: "yes\r\nno"
|
16
|
+
default: "no"
|
17
|
+
hidden_value: false
|
8
18
|
%>
|
19
|
+
<%-
|
20
|
+
els = input('ELS') == "yes" ? "--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: 13.2.
|
4
|
+
version: 13.2.7
|
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:
|
11
|
+
date: 2025-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: deface
|
@@ -592,7 +592,7 @@ homepage: https://github.com/theforeman/foreman_remote_execution
|
|
592
592
|
licenses:
|
593
593
|
- GPL-3.0
|
594
594
|
metadata: {}
|
595
|
-
post_install_message:
|
595
|
+
post_install_message:
|
596
596
|
rdoc_options: []
|
597
597
|
require_paths:
|
598
598
|
- lib
|
@@ -611,7 +611,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
611
611
|
version: '0'
|
612
612
|
requirements: []
|
613
613
|
rubygems_version: 3.3.27
|
614
|
-
signing_key:
|
614
|
+
signing_key:
|
615
615
|
specification_version: 4
|
616
616
|
summary: A plugin bringing remote execution to the Foreman, completing the config
|
617
617
|
management functionality with remote management functionality.
|