Skip to content

Commit

Permalink
minor fixup to a test script...
Browse files Browse the repository at this point in the history
ssh-keygen (as of 2024-05) seems to have changed the default from rsa to
ed25519, which causes this script to fail.  Since I often run the test
suite on an older Xubuntu LTS also, this is the simplest way to get that
test working identically on all machines.
  • Loading branch information
sitaramc committed May 28, 2024
1 parent 6b05ce4 commit a546e5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/ssh-authkeys.t
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ try "
ssh-keygen -N '' -q -f alice -C alice
ssh-keygen -N '' -q -f bob -C bob
ssh-keygen -N '' -q -f carol -C carol
ssh-keygen -N '' -q -f dave -C dave
ssh-keygen -N '' -q -f dave -C dave -t rsa
ssh-keygen -N '' -q -f eve -C eve
rm alice bob carol dave eve
ls -a; ok; /alice.pub/; /bob.pub/; /carol.pub/; /dave.pub/; /eve.pub/
Expand Down

0 comments on commit a546e5e

Please sign in to comment.