manga-dlp/docker/rootfs/etc/cont-init.d/80-fix-perms
Ivan Schaller e016ed8bf7
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
add docker container
2021-12-24 16:30:50 +01:00

13 lines
518 B
Text

#!/usr/bin/with-contenv bash
# shellcheck shell=bash
# source env variables
source /etc/cont-init.d/20-setenv
# fix permissions
find '/app' -type 'd' \( -not -perm 775 -and -not -path '/app/downloads*' \) -exec chmod 775 '{}' \+
find '/app' -type 'f' \( -not -perm 664 -and -not -path '/app/downloads*' \) -exec chmod 664 '{}' \+
find '/app' \( -not -user abc -and -not -path '/app/downloads*' \) -exec chown abc '{}' \+
find '/app' \( -not -group abc -and -not -path '/app/downloads*' \) -exec chown :abc '{}' \+