9 lines
136 B
Plaintext
9 lines
136 B
Plaintext
|
#!/bin/bash
|
||
|
set -eux
|
||
|
|
||
|
DISTRO=`lsb_release -si` || true
|
||
|
|
||
|
if [ "openSUSE project" = "$DISTRO" ]; then
|
||
|
install-packages dhcp-client
|
||
|
fi
|