This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
portail-citoyen2/debian/conf/syncdb.sh

14 lines
402 B
Bash
Executable File

#!/bin/sh
. /etc/portail-citoyen/portail-citoyen2.conf
if [ "$MULTITENANT_MODE" = "yes" ]; then
python /usr/lib/portail-citoyen/manage.py sync_schemas --all --noinput
python /usr/lib/portail-citoyen/manage.py migrate_schemas --fake --noinput
else
python /usr/lib/portail-citoyen/manage.py syncdb --all --noinput
python /usr/lib/portail-citoyen/manage.py migrate --fake --noinput
fi