Skip to content

Commit 1db8b61

Browse files
authored
Merge pull request #24 from dockeronfire/skip-setfacl
Invert SKIP_SETFACL test in entrypoint
2 parents b1f9d88 + 1077601 commit 1db8b61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spaceonfire/bin/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fi
1919

2020
# Setup access rights for nginx group
2121
setfacl -RL -m g:nginx:rwx $COMPOSER_HOME >> /dev/null 2>&1
22-
if [[ "$SKIP_SETFACL" == "1" ]]; then
22+
if [[ "$SKIP_SETFACL" != "1" ]]; then
2323
setfacl -RL -m g:nginx:rwx /var/www/html/ >> /dev/null 2>&1
2424
fi
2525

0 commit comments

Comments
 (0)