Skip to content

Commit

Permalink
update install for cent8
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruner committed Apr 6, 2021
1 parent ed01c65 commit aee45a8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion install/install_packages.sh
Expand Up @@ -134,7 +134,11 @@ function install_cent_packages {
fi

echo "-- installing development tools"
yum groupinstall "Development Tools" -y
if [[ "$OSVERSION" == "8" ]]; then
dnf group install "Development Tools" -y
else
yum groupinstall "Development Tools" -y
fi

YUMPACKAGES='
redhat-lsb
Expand Down
3 changes: 2 additions & 1 deletion install/install_perl.sh
Expand Up @@ -299,6 +299,7 @@ function install_packages {
function install_perl_modules {

PERLMODULES='
Crypt::Curve25519@0.05
Array::Split
Data::Dumper
Data::Dumper::HTML
Expand Down Expand Up @@ -368,7 +369,7 @@ function install_perl_modules {
MongoDB::GridFS@1.8.3
MongoDB::GridFS::File@1.8.3
MongoDB::OID@1.8.3
Meerkat
Meerkat@0.15
Mojo
MojoX::Log::Log4perl
Mojolicious::Plugin::WithCSRFProtection
Expand Down

0 comments on commit aee45a8

Please sign in to comment.