qubes-core-admin-linux/dom0-updates/qubes-dom0-updates.cron
2015-12-13 02:06:36 +01:00

22 lines
514 B
Bash
Executable File

#!/bin/bash
NOTIFY_ICON=/usr/share/qubes/icons/dom0-update-avail.svg
UPDATES_STAT_FILE=/var/lib/qubes/updates/dom0-updates-available
UPDATES_DISABLE_FLAG=/var/lib/qubes/updates/disable-updates
if [ -f "$UPDATES_DISABLE_FLAG" ]; then
exit 0
fi
# If no updates available - exit here
qubes-dom0-update --check-only >/dev/null && exit
RETCODE=$?
if [ "$RETCODE" -ne 100 ]; then
echo "ERROR: Error checking for updates" >&2
exit $RETCODE
fi
# Touch stat file for qubes-manager
touch $UPDATES_STAT_FILE