1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00

Create db dir and copy files instead of nested folder

This commit is contained in:
jvolkenant 2022-09-19 13:09:22 -07:00
parent 6eff1b04fa
commit 2d34ea9781

View File

@ -250,10 +250,10 @@ tools/editconf.py /etc/default/postgrey \
if [ ! -d $STORAGE_ROOT/mail/postgrey/db ]; then
# Stop the service
service postgrey stop
# Ensure the new base path for postgrey exists
mkdir -p $STORAGE_ROOT/mail/postgrey
# Move over database
mv /var/lib/postgrey $STORAGE_ROOT/mail/postgrey/db
# Ensure the new paths for postgrey db exists
mkdir -p $STORAGE_ROOT/mail/postgrey $STORAGE_ROOT/mail/postgrey/db
# Move over database files
mv /var/lib/postgrey/* $STORAGE_ROOT/mail/postgrey/db/ || true
fi
# Ensure permissions are set
chown -R postgrey:postgrey $STORAGE_ROOT/mail/postgrey/