Add environment switch for centos8 to use dnf

Set YUM to dnf for Centos 8; this matches similar done in
fedora-minimal.

Change-Id: I2b2c41a73e468fe9045ee5b7b812da66f20d8584
This commit is contained in:
Ian Wienand 2019-09-25 03:40:54 +00:00
parent 84cf2e1b82
commit ddb2811255
2 changed files with 5 additions and 3 deletions

View File

@ -4,6 +4,3 @@ export DIB_RELEASE=${DIB_RELEASE:-7}
# by default, enable DHCP configuration of eth0 & eth1 in network
# scripts. See yum-minimal for full details
export DIB_YUM_MINIMAL_CREATE_INTERFACES=${DIB_YUM_MINIMAL_CREATE_INTERFACES:-1}
# Useful for elements that work with fedora (dnf) & centos
export YUM=${YUM:-yum}

View File

@ -0,0 +1,5 @@
if [ $DIB_RELEASE -ge 8 ]; then
export YUM=dnf
else
export YUM=yum
fi