1
0
mirror of https://github.com/pi-hole/pi-hole synced 2025-01-08 23:20:56 +00:00

Merge pull request #1587 from pi-hole/fix/1430

Show text typed when pressing Ctrl+C after using pihole -a -p
This commit is contained in:
Jacob Salmela 2017-07-06 20:59:41 -05:00 committed by GitHub
commit 7ef751f96d

View File

@ -89,6 +89,9 @@ SetWebPassword() {
readonly PASSWORD="${args[2]}"
readonly CONFIRM="${PASSWORD}"
else
# Prevents a bug if the user presses Ctrl+C and it continues to hide the text typed.
# So we reset the terminal via stty if the user does press Ctrl+C
trap '{ echo -e "\nNo password will be set" ; stty sane ; exit 1; }' INT
read -s -p "Enter New Password (Blank for no password): " PASSWORD
echo ""