#!/bin/sh

# This script outputs the current update status for the statusbar

UPDATE_STATUSFILE="/run/foxclient_update_status"

if grep -q ^RUN "$UPDATE_STATUSFILE" ; then
	echo "Systemupdate wird installiert ..."
elif grep -q ^ERROR "$UPDATE_STATUSFILE" ; then
	echo "Letztes Systemupdate fehlgeschlagen"
fi
