5fb556f44d
The openSUSE base image does not contain /sbin/dhclient-script, install it. Change-Id: Ib0db15139930d42bd60213437ef63d7915d8134a
9 lines
136 B
Bash
Executable File
9 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
|
|
DISTRO=`lsb_release -si` || true
|
|
|
|
if [ "openSUSE project" = "$DISTRO" ]; then
|
|
install-packages dhcp-client
|
|
fi
|