mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Don't 'blugh' when ^C is pressed during reading passwords
This commit is contained in:
parent
5131cb250a
commit
30f4284b66
1 changed files with 8 additions and 4 deletions
12
prosodyctl
12
prosodyctl
|
@ -125,17 +125,21 @@ end
|
|||
|
||||
local function getchar(n)
|
||||
os.execute("stty raw -echo");
|
||||
local char = io.read(n or 1);
|
||||
local ok, char = pcall(io.read, n or 1);
|
||||
os.execute("stty sane");
|
||||
return char;
|
||||
if ok then
|
||||
return char;
|
||||
end
|
||||
end
|
||||
|
||||
local function getpass()
|
||||
os.execute("stty -echo");
|
||||
local pass = io.read("*l");
|
||||
local ok, pass = pcall(io.read, "*l");
|
||||
os.execute("stty sane");
|
||||
io.write("\n");
|
||||
return pass;
|
||||
if ok then
|
||||
return pass;
|
||||
end
|
||||
end
|
||||
|
||||
function show_yesno(prompt)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue