adjust linux-firmware for cloud images

This commit is contained in:
Peter Robinson 2015-09-23 07:16:18 +01:00
parent b44bc5a578
commit 78114bb82f
3 changed files with 9 additions and 4 deletions

View File

@ -122,8 +122,9 @@ echo .
# this is installed by default but we don't need it in virt
# Commenting out the following for #1234504
#echo "Removing linux-firmware package."
#dnf -C -y erase linux-firmware
# rpm works just fine for removing this, no idea why dnf can't cope
echo "Removing linux-firmware package."
rpm -e linux-firmware
# Remove firewalld; was supposed to be optional in F18+, but is pulled in
# in install/image building.

View File

@ -108,8 +108,10 @@ ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
echo .
# this is installed by default but we don't need it in virt
# Commenting out the following for #1234504
# rpm works just fine for removing this, no idea why dnf can't cope
echo "Removing linux-firmware package."
yum -C -y remove linux-firmware
rpm -e linux-firmware
# Remove firewalld; was supposed to be optional in F18+, but is required to
# be present for install/image building.

View File

@ -99,8 +99,10 @@ ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
echo .
# this is installed by default but we don't need it in virt
# Commenting out the following for #1234504
# rpm works just fine for removing this, no idea why dnf can't cope
echo "Removing linux-firmware package."
yum -C -y remove linux-firmware
rpm -e linux-firmware
# Remove firewalld; was supposed to be optional in F18+, but is required to
# be present for install/image building.