manga-dlp/docker/rootfs/etc/cont-init.d/80-fix-perms
Ivan Schaller 781b25c2e8
All checks were successful
ci/woodpecker/push/tests Pipeline was successful
fix docker container
2022-05-29 19:11:38 +02:00

15 lines
561 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 '{}' \+
# fix schedules
chmod -R +x /app/schedules