Disable recommended package installations for zypper-minimal

This is consistent with how dpkg based images are configured
and minimizes the nodepool images drastically (avoid installing
texlive for example)

Change-Id: I98fb31bc0e06869e9770fae3dbd62f0d86acb879
This commit is contained in:
Dirk Mueller 2017-05-26 09:47:07 +02:00
parent b7924c0c83
commit b4edb7d0eb

View File

@ -0,0 +1,18 @@
#!/bin/bash
# Prevent libsolv/zypper from installing recommended packages
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
set -x
fi
set -eu
set -o pipefail
fgrep -qx "solver.onlyRequires = true" /etc/zypp/zypp.conf || {
cat >> /etc/zypp/zypp.conf << _EOF_
## Disable installation of recommended packages, language packages
## and packages which depend on hardware (modalias).
solver.onlyRequires = true
_EOF_
}