dcbb7e7ebb
It turns out make has always been a tacit dependency of openssl as it ships a Makefile for certificates [1]. This just recently changed to be a hard dependency in F27, so this now fails as openssl is a dependency of protected packages such as dnf. Since it's always been wrong to remove it, we take it out of the purge list. [1] https://bugzilla.redhat.com/show_bug.cgi?id=783446 Change-Id: I69efb3a56878ab97c4587bbbf5356bea752f2846
32 lines
755 B
Bash
Executable File
32 lines
755 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${DIB_DEBUG_TRACE:-0}" -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# TODO(lucasagomes): optimize the ramdisk for other OSs
|
|
if [ $DISTRO_NAME = 'fedora' ] ; then
|
|
|
|
_remove_yum=''
|
|
if [ $DIB_RELEASE -ge 22 ]; then
|
|
# if we are on F22, we can remove yum if there, because it has
|
|
# been superseeded by dnf
|
|
_remove_yum='yum'
|
|
fi
|
|
|
|
install-packages -e kernel-debug-devel gcc fedora-logos \
|
|
rsync pykickstart \
|
|
genisoimage tcpdump \
|
|
man-db kbd-misc \
|
|
plymouth cronie ${_remove_yum}
|
|
|
|
${YUM:-yum} clean all
|
|
|
|
# Rebuilding the rpm database after removing packages will reduce
|
|
# its size
|
|
rpm --rebuilddb
|
|
|
|
fi
|