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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e583aa5a9aac3e6a34ae0f42fa35f154d56830ad88558dbe86513389fe1dbb5
4
- data.tar.gz: 2cd7f2449b0e5a8b4925462c0fbb4bb02912586173d204db1d25d644f0fd1bdb
3
+ metadata.gz: 2a300266f1fb00313f0bc59f37573802bbcf230fca5e9867bcee11bdc8279a93
4
+ data.tar.gz: bc52a77d346cd77c834fd134a872fab19c8b12fc98c30f27deba4a7a64a776b0
5
5
  SHA512:
6
- metadata.gz: c8d3f21e337dee5e4102eeccdd4717539cf2422938302311953c6ac2bc37050c082c0cd5f68ad82041ea2b6bcebd89dd934708862694658632c5b941221b9ef4
7
- data.tar.gz: 5dfcabcae4a0cf33e8806936b2e8b23ea5030be225cc0b1ff3b6f8f60c48eb2f4456feb7a5597b437d5f49d9d162295bfa5069fad950f73056afec35a1a166fb
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
@@ -1,3 +1,3 @@
1
1
  module ForemanRemoteExecution
2
- VERSION = '14.1.3'.freeze
2
+ VERSION = '14.1.4'.freeze
3
3
  end
@@ -25,7 +25,7 @@ const TargetingHostsPage = ({
25
25
  }) => (
26
26
  <div id="targeting_hosts">
27
27
  <Grid.Row>
28
- <Grid.Col md={6} className="title_filter">
28
+ <Grid.Col md={6}>
29
29
  <SearchBar
30
30
  onSearch={query => handleSearch(query, statusFilter)}
31
31
  data={{
@@ -10,7 +10,6 @@ exports[`TargetingHostsPage renders 1`] = `
10
10
  >
11
11
  <Col
12
12
  bsClass="col"
13
- className="title_filter"
14
13
  componentClass="div"
15
14
  md={6}
16
15
  >
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.3
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-03 00:00:00.000000000 Z
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.