Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions bigtop_toolchain/manifests/packages.pp
Original file line number Diff line number Diff line change
Expand Up @@ -232,14 +232,20 @@
package { 'epel-release':
ensure => installed
}
# On CentOS 8, EPEL requires that the PowerTools repository is enabled.
# See https://fedoraproject.org/wiki/EPEL#How_can_I_use_these_extra_packages.3F
if $operatingsystemmajrelease !~ /^[0-7]$/ {
# On CentOS 8, EPEL requires that the PowerTools repository is enabled.
# See https://fedoraproject.org/wiki/EPEL#How_can_I_use_these_extra_packages.3F
yumrepo { 'powertools':
ensure => 'present',
enabled => '1'
}
Yumrepo<||> -> Package<||>

# On CentOS 8, cmake-3.18.2-9.el8 does not work without updated libarchive.
# https://bugs.centos.org/view.php?id=18212
package { libarchive:
ensure => latest
}
}
}

Expand Down