docker-prepare.sh: remove rogue instances of sudo

This is being done by calling the script as the correct user in the 
first place.
This commit is contained in:
Starbeamrainbowlabs 2021-04-08 03:06:01 +01:00
parent dd7c5da256
commit b761a549c0
No known key found for this signature in database
GPG Key ID: 1BE5172E637709C2

View File

@ -44,7 +44,7 @@ migrations() {
# of the current container starts.
flock 200
echo "Apply database migrations..."
sudo -HEu paperless python3 manage.py migrate
python3 manage.py migrate
) 200>/usr/src/paperless/data/migration_lock
}
@ -55,7 +55,7 @@ search_index() {
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 | sudo -HEu paperless tee $index_version_file >/dev/null
echo $index_version | tee $index_version_file >/dev/null
fi
}