X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=prosodyctl;h=e095ba398f93029fabd44a0b4c1b1083000811c1;hb=4f30ec4ac8e956391e63a65fe8b8515d615ad5ea;hp=575948a1745833eb7ef6d9443bd37469efa486ca;hpb=c328b050b2c8c31c18b0cb6c2475991b93053486;p=prosody.git diff --git a/prosodyctl b/prosodyctl index 575948a1..e095ba39 100755 --- a/prosodyctl +++ b/prosodyctl @@ -137,18 +137,33 @@ function show_usage(usage, desc) end local function getchar(n) - os.execute("stty raw -echo"); - local ok, char = pcall(io.read, n or 1); - os.execute("stty sane"); + local stty_ret = os.execute("stty raw -echo 2>/dev/null"); + local ok, char; + if stty_ret == 0 then + ok, char = pcall(io.read, n or 1); + os.execute("stty sane"); + else + ok, char = pcall(io.read, "*l"); + if ok then + char = char:sub(1, n or 1); + end + end if ok then return char; end end local function getpass() - os.execute("stty -echo"); + local stty_ret = os.execute("stty -echo 2>/dev/null"); + if stty_ret ~= 0 then + io.write("\027[08m"); -- ANSI 'hidden' text attribute + end local ok, pass = pcall(io.read, "*l"); - os.execute("stty sane"); + if stty_ret == 0 then + os.execute("stty sane"); + else + io.write("\027[00m"); + end io.write("\n"); if ok then return pass;