Skip to content

Commit

Permalink
Fixes #37461 - Don't use the Kickstart rhsm for RHEL 8
Browse files Browse the repository at this point in the history
The rhsm command has some issues on RHEL 8,
before it was not enabled for RHEL8 until the PR#9745.

refs bf03a25
  • Loading branch information
stejskalleos authored and ShimShtein committed May 20, 2024
1 parent 0f9352a commit 3b135d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ description: |
use_ntp = host_param_true?('use-ntp', (is_fedora && os_major < 16) || (rhel_compatible && os_major <= 6))
iface = @host.provision_interface
appstream_present = false
use_rhsm = (@host.operatingsystem.name == 'RedHat' || @host.operatingsystem.name == 'RHEL') && os_major >= 8
use_rhsm = (@host.operatingsystem.name == 'RedHat' || @host.operatingsystem.name == 'RHEL') && os_major >= 9
-%>
# This kickstart file was rendered from the Foreman provisioning template "<%= @template_name %>".
# for <%= @host %> running <%= @host.operatingsystem.name %> <%= os_major %> <%= @arch %>
Expand Down

0 comments on commit 3b135d0

Please sign in to comment.