Skip to content

Commit

Permalink
Merge pull request #20350 from holiman/puppeth_ssh
Browse files Browse the repository at this point in the history
cmd/puppeth: make ssh prompt more user-friendly
  • Loading branch information
karalabe authored Nov 21, 2019
2 parents 7be89a7 + 216ff5a commit f56f969
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions cmd/puppeth/ssh.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,20 @@ func dial(server string, pubkey []byte) (*sshClient, error) {
fmt.Printf("SSH key fingerprint is %s [MD5]\n", ssh.FingerprintLegacyMD5(key))
fmt.Printf("Are you sure you want to continue connecting (yes/no)? ")

text, err := bufio.NewReader(os.Stdin).ReadString('\n')
switch {
case err != nil:
return err
case strings.TrimSpace(text) == "yes":
pubkey = key.Marshal()
return nil
default:
return fmt.Errorf("unknown auth choice: %v", text)
for {
text, err := bufio.NewReader(os.Stdin).ReadString('\n')
switch {
case err != nil:
return err
case strings.TrimSpace(text) == "yes":
pubkey = key.Marshal()
return nil
case strings.TrimSpace(text) == "no":
return errors.New("users says no")
default:
fmt.Println("Please answer 'yes' or 'no'")
continue
}
}
}
// If a public key exists for this SSH server, check that it matches
Expand Down

0 comments on commit f56f969

Please sign in to comment.