mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
Add o+x to storage root since jammy's default permissions on new home directories is 0750 and access by other users (daemons) is needed
This commit is contained in:
parent
46e0e6ff39
commit
c3ac810c19
@ -76,6 +76,11 @@ fi
|
||||
# migration number for this version of Mail-in-a-Box.
|
||||
if ! id -u $STORAGE_USER >/dev/null 2>&1; then
|
||||
useradd -m $STORAGE_USER
|
||||
# default permissions for new home directories in jammy (ubuntu
|
||||
# 22) changed from 0755 to 0750. openldap (slapd.service) runs
|
||||
# under its own user account (openldap) and requires access to
|
||||
# STORAGE_ROOT
|
||||
chmod o+x $STORAGE_ROOT
|
||||
fi
|
||||
if [ ! -d $STORAGE_ROOT ]; then
|
||||
mkdir -p $STORAGE_ROOT
|
||||
|
Loading…
Reference in New Issue
Block a user