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:
parent
b7924c0c83
commit
b4edb7d0eb
@ -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_
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user