Displaying 2 results from an estimated 2 matches for "with_passphrase".
2005 Oct 25
0
[PATCH] Fix duplicated text in contrib/cygwin/ssh-user-config
...if [ ! -f "${pwdhome}/.ssh/id_rsa" ]
then
- if request "Shall I create an SSH2 RSA identity file for you? (yes/no) "
+ if request "Shall I create an SSH2 RSA identity file for you?"
then
echo "Generating ${pwdhome}/.ssh/id_rsa"
if [ "${with_passphrase}" = "yes" ]
@@ -217,7 +217,7 @@ fi
if [ ! -f "${pwdhome}/.ssh/id_dsa" ]
then
- if request "Shall I create an SSH2 DSA identity file for you? (yes/no) "
+ if request "Shall I create an SSH2 DSA identity file for you?"
then
echo "Generat...
2001 Jan 18
1
New configuration scripts for Cygwin
...n 0
else
return 1
fi
}
# Check options
while :
do
case $# in
0)
break
;;
esac
option=$1
shift
case "$option" in
-d | --debug )
set -x
;;
-y | --yes )
auto_answer=yes
;;
-n | --no )
auto_answer=no
;;
-p | --passphrase )
with_passphrase="yes"
passphrase=$1
shift
;;
*)
echo "usage: ${progname} [OPTION]..."
echo
echo "This script creates an OpenSSH user configuration."
echo
echo "Options:"
echo " --debug -d Enable shell's debug out...