fix(): broken symlink

pull/45/head
Magicalex 2019-12-29 00:14:26 +01:00
parent 4cfcb970ab
commit 145c787615
No known key found for this signature in database
GPG Key ID: A89B48B1788C3CB5
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ sed -i "s/<OPCACHE_MEMORY_LIMIT>/${OPCACHE_MEMORY_LIMIT}/g" /etc/php7/conf.d/00_
# Set permissions
for folder in /services /var/log /var/lib/nginx; do
find ${folder} ! -user "${UID}" -exec chown "${UID}:${GID}" {} \;
find ${folder} ! -group "${GID}" -exec chown "${UID}:${GID}" {} \;
find ${folder} ! -user "${UID}" -exec chown -h "${UID}:${GID}" {} \;
find ${folder} ! -group "${GID}" -exec chown -h "${UID}:${GID}" {} \;
done
# Set log output to STDOUT if wanted (LOG_TO_STDOUT=true)