Disable dnf plugins when downloading dom0 updates in sys-firewall

Since the qubes-download-dom0-updates script executes dnf with fakeroot, some dnf plugins like etckeeper break the update with "Permission denied" errors.

(cherry picked from commit 5438e43ff6)
This commit is contained in:
Nedyalko Andreev 2017-10-28 06:34:51 +03:00 committed by Marek Marczykowski-Górecki
parent a067452c64
commit 78c1a22bbf
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -53,7 +53,7 @@ fi
YUM="yum"
if type dnf >/dev/null 2>&1; then
YUM="dnf --best --allowerasing"
YUM="dnf --best --allowerasing --noplugins"
fi
if ! [ -d "$DOM0_UPDATES_DIR" ]; then