570ecf16a5
The default value was set in the centos7 element, but not exported, which caused issues in rpm-distro. Also changed a test in rpm-distro to only check for DIB_RELEASE > 22 if it's fedora. Closes-Bug: #1477172 Change-Id: Ib6f4227411c2e8f1965c3b78bc318512c59a7876
20 lines
457 B
Bash
Executable File
20 lines
457 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if [[ $DISTRO_NAME == "fedora" && $DIB_RELEASE -ge 22 ]]; then
|
|
# dnf is slightly different; doesn't have these by default
|
|
cfg=/etc/dnf/dnf.conf
|
|
echo "keepcache=1" >> $cfg
|
|
echo "cachedir=/tmp/yum" >> $cfg
|
|
else
|
|
cfg=/etc/yum.conf
|
|
sed -i 's/keepcache=0/keepcache=1/' $cfg
|
|
sed -i 's/cachedir=\/var\/cache\/yum/cachedir=\/tmp\/yum/' $cfg
|
|
fi
|
|
|