Fix setting webpassword via pihole -a -p

Signed-off-by: Christian König <ckoenig@posteo.de>
ftl-binary-names
Christian König 1 year ago committed by Adam Warner
parent 3695610300
commit 3cb3adc5ca
No known key found for this signature in database

@ -165,7 +165,7 @@ SetWebPassword() {
echo ""
if [ "${PASSWORD}" == "" ]; then
setFTLConfigValue "api.pwhash" ""
setFTLConfigValue "webserver.api.pwhash" "" >/dev/null
echo -e " ${TICK} Password Removed"
exit 0
fi
@ -178,7 +178,7 @@ SetWebPassword() {
# We do not wrap this in brackets, otherwise BASH will expand any appropriate syntax
hash=$(HashPassword "$PASSWORD")
# Save hash to file
setFTLConfigValue "api.pwhash" "${hash}"
setFTLConfigValue "webserver.api.pwhash" "${hash}" >/dev/null
echo -e " ${TICK} New password set"
else
echo -e " ${CROSS} Passwords don't match. Your password has not been changed"

Loading…
Cancel
Save