#!/bin/bash
set -eux
set -o pipefail

DISTRO=`lsb_release -si` || true

if [ "openSUSE project" = "$DISTRO" ]; then
    install-packages dhcp-client
fi
