14 lines
120 B
Bash
Executable File
14 lines
120 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
exec 2>&1
|
|
|
|
# Mitigate crash looping
|
|
sleep 60
|
|
|
|
while :; do
|
|
./fetch_and_update.sh
|
|
sleep 3600
|
|
done
|