do not fail if importing for existing datbase

This commit is contained in:
Alex 2023-01-23 13:18:25 +01:00 committed by GitHub
parent 9c18f030ca
commit afd6778ca6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
run.sh
View File

@ -40,7 +40,12 @@ if [ ! -f /data/style/mapnik.xml ]; then
carto ${NAME_MML:-project.mml} > mapnik.xml
fi
if [ "$1" == "import" ] && [ ! -f /var/lib/postgresql/14/main/.databaseImported ]; then
if [ "$1" == "import" ]; then
if [ ! -f /var/lib/postgresql/14/main/.databaseImported ]; then
echo "database already initialized"
exit 0
fi
# Ensure that database directory is in right state
mkdir -p /data/database/postgres/
chown renderer: /data/database/