From 5438e43ff6cb1aa7c2f143c81f2b176845a028e4 Mon Sep 17 00:00:00 2001 From: Nedyalko Andreev Date: Sat, 28 Oct 2017 06:34:51 +0300 Subject: [PATCH] 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. --- misc/qubes-download-dom0-updates.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/qubes-download-dom0-updates.sh b/misc/qubes-download-dom0-updates.sh index f871f7e..9bcdfeb 100755 --- a/misc/qubes-download-dom0-updates.sh +++ b/misc/qubes-download-dom0-updates.sh @@ -52,7 +52,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