mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-08 07:45:32 +01:00
16 lines
261 B
Bash
16 lines
261 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
cd /usr/src/paperless/src/
|
||
|
|
|
||
|
|
if [[ $(id -u) == 0 ]] ;
|
||
|
|
then
|
||
|
|
sudo -HEu paperless python3 manage.py management_command "$@"
|
||
|
|
elif [[ $(id -un) == "paperless" ]] ;
|
||
|
|
then
|
||
|
|
python3 manage.py management_command "$@"
|
||
|
|
else
|
||
|
|
echo "Unknown user."
|
||
|
|
fi
|