#!/bin/bash
set -eux

DISTRO=`lsb_release -si` || true

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