Fix umask - get umask from environment

Makes it consistent with other linuxserver.io images.
This commit is contained in:
Mateusz Furdyna
2019-06-13 00:30:30 +02:00
committed by Ryan Kuba
parent 6ab9f20607
commit 5456827b6b
2 changed files with 6 additions and 0 deletions

View File

@@ -1,5 +1,9 @@
#!/usr/bin/with-contenv bash
UMASK_SET=${UMASK_SET:-022}
umask "$UMASK_SET"
cd /opt/radarr || exit
exec \