From 2198986d5cec5cc2d4351088e56a150bfd03b3e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Wed, 3 Feb 2016 14:14:14 +0100 Subject: [PATCH] dom0-update: do not output scary messagge about missing repomd.xml ... when no updates are available. Fixes QubesOS/qubes-issues#1685 --- dom0-updates/qubes-dom0-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom0-updates/qubes-dom0-update b/dom0-updates/qubes-dom0-update index 00fbc90..17f0167 100755 --- a/dom0-updates/qubes-dom0-update +++ b/dom0-updates/qubes-dom0-update @@ -169,6 +169,6 @@ elif [ -f /var/lib/qubes/updates/repodata/repomd.xml ]; then fi yum -q check-update && rm -f $UPDATES_STAT_FILE else - yum -q check-update && rm -f $UPDATES_STAT_FILE + rm -f $UPDATES_STAT_FILE echo "No updates avaliable" >&2 fi