Updated check_for_spism

This commit is contained in:
Gerhard Hoffmann 2022-06-11 18:16:19 +02:00
parent cf118ee75d
commit f6306f7798

View File

@ -51,7 +51,11 @@ wait_for_trigger() {
}
check_for_apism() {
return 0
nc localhost 7778
if [ $? -eq 0 ]; then
return 0
fi
return 1
}
check_for_updates() {