10 lines
287 B
Bash
10 lines
287 B
Bash
#!/bin/sh
|
|
set -e # Exit on any error
|
|
|
|
echo "Starting Check Annunci job..."
|
|
if curl -f --connect-timeout 30 --max-time 300 "http://web:3000/api/trpc/annunci.checkAnnunci"; then
|
|
echo "Check Annunci job completed successfully"
|
|
else
|
|
echo "Failed to Check Annunci" >&2
|
|
exit 1
|
|
fi
|