Skip to content

Commit

Permalink
Merge pull request #2868 from nextcloud/enh/noid/revert-tempdir-adjus…
Browse files Browse the repository at this point in the history
…tment

revert adjustment of tempdirectory
  • Loading branch information
szaimen authored Jun 26, 2023
2 parents b3d0b99 + dfe6bd5 commit 1354243
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions Containers/nextcloud/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -444,12 +444,14 @@ if [ -z "$OBJECTSTORE_S3_BUCKET" ] && [ -z "$OBJECTSTORE_SWIFT_URL" ]; then
exit 1
fi

# Configure tempdirectory
mkdir -p "$NEXTCLOUD_DATA_DIR/tmp/"
if ! grep -q upload_tmp_dir /usr/local/etc/php/conf.d/nextcloud.ini; then
echo "upload_tmp_dir = $NEXTCLOUD_DATA_DIR/tmp/" >> /usr/local/etc/php/conf.d/nextcloud.ini
# Delete formerly configured tempdirectory as the default is usually faster (if the datadir is on a HDD or network FS)
if [ "$(php /var/www/html/occ config:system:get tempdirectory)" = "$NEXTCLOUD_DATA_DIR/tmp/" ]; then
php /var/www/html/occ config:system:delete tempdirectory
if [ -d "$NEXTCLOUD_DATA_DIR/tmp/" ]; then
rm -r "$NEXTCLOUD_DATA_DIR/tmp/"
fi
fi
php /var/www/html/occ config:system:set tempdirectory --value="$NEXTCLOUD_DATA_DIR/tmp/"

fi

# Perform fingerprint update if instance was restored
Expand Down

0 comments on commit 1354243

Please sign in to comment.