ddb2811255
Set YUM to dnf for Centos 8; this matches similar done in fedora-minimal. Change-Id: I2b2c41a73e468fe9045ee5b7b812da66f20d8584
6 lines
78 B
Bash
6 lines
78 B
Bash
if [ $DIB_RELEASE -ge 8 ]; then
|
|
export YUM=dnf
|
|
else
|
|
export YUM=yum
|
|
fi
|