Преглед на файлове

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.
Nedyalko Andreev преди 6 години
родител
ревизия
5438e43ff6
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      misc/qubes-download-dom0-updates.sh

+ 1 - 1
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