Use SIGINT to stop loop in chekForGraph...()

This commit is contained in:
Santiago Lo Coco 2022-01-04 18:39:25 -03:00
parent 5b0059ddf8
commit ca0b87ea78
1 changed files with 5 additions and 2 deletions

View File

@ -447,14 +447,17 @@ getDotfiles() {
}
checkForGraphicalInterface() {
calcHeightAndRun "whiptail --infobox \"Waiting for archiso to finish its tasks (reflector and graphical interface). This may take a while, please wait.\" HEIGTH 61"
trap 'systemctl stop reflector; forceExit=true' INT
calcHeightAndRun "whiptail --infobox \"Waiting for systemd units to finish ('reflector.service'). This may take a while, please wait.\" HEIGTH 61"
journalctl --sync
result=$(journalctl -b -q -r -g "Graphical" | wc -l)
while [ $result -lt 2 ]; do
forceExit=false
while [ $result -lt 2 ] && [ $forceExit = false ]; do
sleep 1
journalctl --sync
result=$(journalctl -b -q -r -g "Graphical" | wc -l)
done
trap - INT
}
steps=(