mirror of
https://github.com/devilbox/docker-php-fpm.git
synced 2025-12-21 16:31:15 +00:00
Fix missing debug level for func params
This commit is contained in:
@@ -142,15 +142,15 @@ set_mds_settings "MYSQL_BACKUP_USER" "MYSQL_BACKUP_PASS" "MYSQL_BACKUP_HOST" "${
|
||||
### Fix mountpoint permissions
|
||||
###
|
||||
if [ ! -d "/shared/backups" ]; then
|
||||
run "mkdir -p /shared/backups"
|
||||
run "mkdir -p /shared/backups" "${DEBUG_LEVEL}"
|
||||
fi
|
||||
if [ ! -d "/shared/httpd" ]; then
|
||||
run "mkdir -p /shared/httpd"
|
||||
run "mkdir -p /shared/httpd" "${DEBUG_LEVEL}"
|
||||
fi
|
||||
run "chown ${MY_USER}:${MY_GROUP} /shared/backups"
|
||||
run "chown ${MY_USER}:${MY_GROUP} /shared/httpd"
|
||||
run "chmod 0755 /shared/backups"
|
||||
run "chmod 0755 /shared/httpd"
|
||||
run "chown ${MY_USER}:${MY_GROUP} /shared/backups" "${DEBUG_LEVEL}"
|
||||
run "chown ${MY_USER}:${MY_GROUP} /shared/httpd" "${DEBUG_LEVEL}"
|
||||
run "chmod 0755 /shared/backups" "${DEBUG_LEVEL}"
|
||||
run "chmod 0755 /shared/httpd" "${DEBUG_LEVEL}"
|
||||
|
||||
|
||||
###
|
||||
|
||||
Reference in New Issue
Block a user