Skip to content

Remove arch. extentions on packages #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 15, 2025
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: 5 additions & 5 deletions hammerdb/install-script
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ install_mariadb()
#
# Install Mariadb Server and tools
#
# dnf -y install mariadb.x86_64 mariadb-common.x86_64 mariadb-devel.x86_64 \
# mariadb-errmsg.x86_64 mariadb-server.x86_64 mariadb-server-utils.x86_64 mysql-libs.x86_64
dnf -y install mariadb.x86_64 mariadb-common.x86_64 \
mariadb-errmsg.x86_64 mariadb-server.x86_64 mariadb-server-utils.x86_64
# dnf -y install mariadb mariadb-common mariadb-devel \
# mariadb-errmsg mariadb-server mariadb-server-utils mysql-libs
dnf -y install mariadb mariadb-common \
mariadb-errmsg mariadb-server mariadb-server-utils


#
Expand Down Expand Up @@ -146,7 +146,7 @@ install_postgres()
#
# Installing Postgres Server and tools
#
dnf -y install postgresql.x86_64 postgresql-contrib.x86_64 postgresql-server.x86_64 glibc-langpack-en libpq
dnf -y install postgresql postgresql-contrib postgresql-server glibc-langpack-en libpq

cd /usr/local/HammerDB
cp -R /tmp/hammerdb-tpcc/postgres/* .
Expand Down
Loading