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:
parent
84cf2e1b82
commit
ddb2811255
@ -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}
|
||||
|
@ -0,0 +1,5 @@
|
||||
if [ $DIB_RELEASE -ge 8 ]; then
|
||||
export YUM=dnf
|
||||
else
|
||||
export YUM=yum
|
||||
fi
|
Loading…
Reference in New Issue
Block a user