1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mumbleserver_ynh.git synced 2024-09-03 19:46:03 +02:00

fix su_passwd checking bug

This commit is contained in:
matlink 2014-11-11 14:43:52 +01:00
parent 006f0e74c0
commit cdb6fb9ac1

View file

@ -21,7 +21,7 @@ if [[ ! $? -eq 0 ]]; then
fi
#check if su_password is not empty
if [[ -n "$su_passwd" ]]; then
if [[ -z "$su_passwd" ]]; then
exit 1
fi