#!/usr/bin/env bash wait_for_postgres() { attempt_num=1 max_attempts=5 echo "Waiting for PostgreSQL to start..." host="${PAPERLESS_DBHOST}" port="${PAPERLESS_DBPORT}" if [[ -z $port ]]; then port="5432" fi while ! /usr/src/paperless/data/migration_lock } search_index() { index_version=1 index_version_file=/usr/src/paperless/data/.index_version if [[ (! -f "$index_version_file") || $(<$index_version_file) != "$index_version" ]]; then echo "Search index out of date. Updating..." python3 manage.py document_index reindex echo $index_version | tee $index_version_file >/dev/null fi } superuser() { if [[ -n "${PAPERLESS_ADMIN_USER}" ]]; then sudo -HEu paperless python3 manage.py manage_superuser fi } do_work() { if [[ -n "${PAPERLESS_DBHOST}" ]]; then wait_for_postgres fi migrations search_index superuser } do_work