diff options
author | Christian Beier <[email protected]> | 2014-09-03 20:54:39 +0200 |
---|---|---|
committer | Christian Beier <[email protected]> | 2014-09-03 20:54:39 +0200 |
commit | 498d222976975f53dea885cfe43ef0f805abd412 (patch) | |
tree | bac684fbde46fdc3e4cc3817616816b71bb67f9f /x11vnc/misc/x11vnc_pw | |
parent | 8d2db0486dcc167f1b02d4454ebf4624ce03e1de (diff) | |
download | libtdevnc-498d222976975f53dea885cfe43ef0f805abd412.tar.gz libtdevnc-498d222976975f53dea885cfe43ef0f805abd412.zip |
Remove x11vnc subdir.
The new x11vnc repo is at https://github.com/LibVNC/x11vnc.
Diffstat (limited to 'x11vnc/misc/x11vnc_pw')
-rwxr-xr-x | x11vnc/misc/x11vnc_pw | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/x11vnc/misc/x11vnc_pw b/x11vnc/misc/x11vnc_pw deleted file mode 100755 index 04ea1e3..0000000 --- a/x11vnc/misc/x11vnc_pw +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# usage: x11vnc_pw [file] (default: ~/.vnc/passwd) - -if [ "X$1" = "X" ]; then - file=$HOME/.vnc/passwd -else - file=$1 -fi - -stty -echo -printf "Password: " -read pw1; echo "" -printf "Verify: " -read pw2; echo "" -stty echo - -if [ "X$pw1" != "X$pw2" ]; then - echo "passwords do not match." - exit 1 -fi - -x11vnc -help > /dev/null 2>&1 -x11vnc -storepasswd "$pw1" "$file" -ls -l "$file" |