dom0-updates: wait for apper to finish, then remove "updates pending" flag

Unfortunate side effect (to be solved at Qubes Manager side): it will
block Qubes Manager until all updates are installed (not only updater
launched).

Fixes QubesOS/qubes-issues#1511
This commit is contained in:
Marek Marczykowski-Górecki 2015-12-13 02:08:05 +01:00
parent 4a556dcab1
commit cb6a52a652
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -86,7 +86,7 @@ if [ "$GUI" == "1" ]; then
if type $app &>/dev/null; then
guiapp=$app
case $guiapp in
apper) guiapp="apper --updates" ;;
apper) guiapp="apper --updates --nofork" ;;
*) guiapp=$app ;;
esac
break;