https://bugs.contribs.org/show_bug.cgi?id=10783

John Crisp <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |CONFIRMED
     Ever confirmed|0                           |1

--- Comment #2 from John Crisp <[email protected]> ---
OK, notes to self. Just a quick browse to see where we find incidents of dsa

grep -irn dsa /sbin/affa

We find this

2995:   my $kf="/root/.ssh/id_dsa.pub";
3004:   if( not -f $kf or not -f "/root/.ssh/id_dsa" ) {
3005:   $s="Generating DSA keys...";
3007:   @cmd=("/usr/bin/ssh-keygen","-t","dsa","-N ''","-f",
"/root/.ssh/id_dsa" );
3008:   not ExecCmd( @cmd, 0 ) or affaErrorExit( "Couldn't generate DSA keys"
);
3009:   $s="Successfully created DSA key pair.";
3030:   my $kf="/root/.ssh/id_dsa.pub";

Sp, I *think* all we need to do is create a new rsa key, but we don't want to
overwrite our old one so we want to create a new one with an individual name eg

id_rsa_affa

So we substitute id_dsa with id_rsa_pub

And update the comments.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
_______________________________________________
Mail for each SME Contribs bug report
To unsubscribe, e-mail [email protected]
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/

Reply via email to