tiredofit / docker-fusiondirectory

Dockerized web based LDAP manager
MIT License
48 stars 18 forks source link

Typo in etc/cont-init.d/10-fusiondirectory #16

Closed hongkongkiwi closed 4 years ago

hongkongkiwi commented 4 years ago

Hi there, looks like there is a typo in the init script.

fusiondirectory-app_1  | /var/run/s6/etc/cont-init.d/10-fusiondirectory: line 94: ENABLE_USER_REMINDER: "TRUE": syntax error: operand expected (error token is ""TRUE"")

When I look at line 94, it's simply missing a - there. Currently, it reads:

ENABLE_USER_REMINDER=${ENABLE_USER_REMINDER:"TRUE"}

It should read:

ENABLE_USER_REMINDER=${ENABLE_USER_REMINDER:-"TRUE"}
tiredofit commented 4 years ago

Thanks for reporting. I've pushed a new tag 1.19.1 to github. Docker Hub will update it's latest and 1.19.1 tag shortly.