This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
idhub-docker/build__pilot-xo9b.sh

31 lines
606 B
Bash
Raw Normal View History

2024-01-09 09:49:05 +00:00
#!/bin/sh
set -e
set -u
# DEBUG
set -x
main() {
# includes functions:
# common_start
# common_end
. ./build__common.sh
2024-01-16 10:19:55 +00:00
pilot='pilot-xo9b'
2024-01-09 09:49:05 +00:00
common_start
2024-01-09 09:49:05 +00:00
# detect if is new
if [ ! -f "./${idhub1}" ] && [ ! -f "./${idhub2}" ]; then
echo 'Detected new deployment, recreating git repos idhub1 and idhub2'
cp -rp IdHub "${idhub1}"
rm -f "${idhub1}/db.sqlite3"
cp -rp IdHub "${idhub2}"
rm -f "${idhub2}/db.sqlite3"
fi
common_end
2024-01-09 09:49:05 +00:00
}
main "${@}"