Skip to content

Commit

Permalink
install the s390 packages conditionally
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed Dec 8, 2023
1 parent ea7ec4f commit 169afc9
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions setup-services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,13 @@ $SUDO zypper --non-interactive --gpg-auto-import-keys install \
udftools \
xfsprogs || exit 1

# Install s390 packages (do not exit on failure).
$SUDO zypper --non-interactive --gpg-auto-import-keys install \
yast2-s390 \
yast2-reipl \
yast2-cio
# Install s390 packages
if [ $(uname -m) == "s390x" ]; then
$SUDO zypper --non-interactive --gpg-auto-import-keys install \
yast2-s390 \
yast2-reipl \
yast2-cio
fi

# Rubygem dependencies
(
Expand Down

0 comments on commit 169afc9

Please sign in to comment.