imagebuild: tinyipa: Make the install-deps.sh SUSE aware

Add zypper support in the install-deps.sh script so tinyipa can be
built on SUSE distributions.

Change-Id: Ie7ac36a9cab3dba825357ccd1e58290873335a68
This commit is contained in:
Markos Chandras 2017-02-03 11:34:35 +00:00 committed by Julia Kreger
parent fd7f10b993
commit 06183752b5
2 changed files with 16 additions and 6 deletions

View File

@ -1,17 +1,23 @@
#!/bin/bash
PACKAGES="wget python-pip unzip sudo gawk squashfs-tools"
COMMON_PACKAGES="wget python-pip unzip sudo gawk"
APT_PACKAGES="${COMMON_PACKAGES} squashfs-tools"
YUM_PACKAGES="${COMMON_PACKAGES} squashfs-tools"
ZYPPER_PACKAGES="${COMMON_PACKAGES} squashfs"
echo "Installing dependencies:"
if [ -x "/usr/bin/apt-get" ]; then
# first zypper in case zypper-aptitude is installed
if [ -x "/usr/bin/zypper" ]; then
sudo -E zypper -n install -l ${ZYPPER_PACKAGES}
elif [ -x "/usr/bin/apt-get" ]; then
sudo -E apt-get update
sudo -E apt-get install -y $PACKAGES
sudo -E apt-get install -y ${APT_PACKAGES}
elif [ -x "/usr/bin/dnf" ]; then
sudo -E dnf install -y $PACKAGES
sudo -E dnf install -y ${YUM_PACKAGES}
elif [ -x "/usr/bin/yum" ]; then
sudo -E yum install -y $PACKAGES
sudo -E yum install -y ${YUM_PACKAGES}
else
echo "No supported package manager installed on system. Supported: apt, yum, dnf"
echo "No supported package manager installed on system. Supported: apt, yum, dnf, zypper"
exit 1
fi

View File

@ -0,0 +1,4 @@
---
features:
- Support for zypper has been added to the TinyIPA install-deps script
in order to support building TinyIPA on SUSE.