b183e024ba
Some minor workarounds for Fedora >= 22 where dnf is the default package manager. The changes are documented on the Fedora release notes https://fedoraproject.org/wiki/Changes/ReplaceYumWithDNF Change-Id: I7d7d6f5d294980dcb217d6190a1efd9e0bbea9a6
17 lines
288 B
Bash
Executable File
17 lines
288 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-1} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if [ $DIB_RELEASE -ge 22 ]; then
|
|
cfg=/etc/dnf/dnf.conf
|
|
else
|
|
cfg=/etc/yum.conf
|
|
fi
|
|
|
|
sed -i 's/keepcache=1/keepcache=0/' $cfg
|
|
sed -i 's/cachedir=\/tmp\/yum/cachedir=\/var\/cache\/yum/' $cfg
|