Joan Torres
4a22d11a96
* Fixes bsc#1235671. OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/tigervnc?expand=0&rev=270
11 lines
159 B
Bash
11 lines
159 B
Bash
#!/bin/sh
|
|
|
|
# Compatibility replacement for vncpasswd.arg.
|
|
|
|
if [ $# -ne 2 ]; then
|
|
echo "Usage: $0 file password"
|
|
exit 1
|
|
fi
|
|
|
|
echo "$2" | vncpasswd -f > "$1"
|