c4k-forgejo/infrastructure/backup/image/resources/entrypoint-start-and-wait.sh

15 lines
196 B
Bash
Raw Normal View History

2022-08-19 09:59:04 +00:00
#!/bin/bash
2023-12-21 21:21:33 +00:00
set -Eexo pipefail
2022-08-19 09:59:04 +00:00
function main() {
2022-09-16 13:23:25 +00:00
create-pg-pass
2022-08-19 09:59:04 +00:00
while true; do
sleep 1m
done
}
source /usr/local/lib/functions.sh
2022-09-16 13:23:25 +00:00
source /usr/local/lib/pg-functions.sh
2022-08-19 09:59:04 +00:00
main