10 lines
250 B
Bash
10 lines
250 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e # Exit on any error
|
||
|
|
|
||
|
|
echo "Starting Update job..."
|
||
|
|
if curl -f --connect-timeout 30 --max-time 300 "http://localhost:1323/update"; then
|
||
|
|
echo "Update job completed successfully"
|
||
|
|
else
|
||
|
|
echo "Failed to Update" >&2
|
||
|
|
exit 1
|
||
|
|
fi
|