mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
prosodyctl: Quit when user pressed ^C in password prompts
This commit is contained in:
parent
30f4284b66
commit
453b76ef8c
1 changed files with 4 additions and 0 deletions
|
@ -158,6 +158,10 @@ local function read_password()
|
||||||
while true do
|
while true do
|
||||||
io.write("Enter new password: ");
|
io.write("Enter new password: ");
|
||||||
password = getpass();
|
password = getpass();
|
||||||
|
if not password then
|
||||||
|
show_message("No password - cancelled");
|
||||||
|
return;
|
||||||
|
end
|
||||||
io.write("Retype new password: ");
|
io.write("Retype new password: ");
|
||||||
if getpass() ~= password then
|
if getpass() ~= password then
|
||||||
if not show_yesno [=[Passwords did not match, try again? [Y/n]]=] then
|
if not show_yesno [=[Passwords did not match, try again? [Y/n]]=] then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue