Changeset 2046 in ProjectBuilder


Ignore:
Timestamp:
Feb 19, 2016, 2:57:49 AM (8 years ago)
Author:
Bruno Cornec
Message:
  • Avoid to display ssh version on stderr when keyscanning
  • Update changelogs
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • 0.13.2/pb/bin/pb

    r2044 r2046  
    44864486# Check whether ecdsa is accepted by the remote host
    44874487my $ecdsa = 0;
    4488 open(SCAN,"ssh-keyscan -p $nport -t ecdsa $target|") || pb_log(0,"Unable to check ECDSA support for $target");
     4488open(SCAN,"ssh-keyscan -p $nport -t ecdsa $target 2>/dev/null |") || pb_log(0,"Unable to check ECDSA support for $target");
    44894489while(<SCAN>) {
    44904490    $ecdsa = 1 if ($_ =~ /ecdsa-/);
  • devel/pb/bin/pb

    r2045 r2046  
    44864486# Check whether ecdsa is accepted by the remote host
    44874487my $ecdsa = 0;
    4488 open(SCAN,"ssh-keyscan -p $nport -t ecdsa $target|") || pb_log(0,"Unable to check ECDSA support for $target");
     4488open(SCAN,"ssh-keyscan -p $nport -t ecdsa $target 2>/dev/null |") || pb_log(0,"Unable to check ECDSA support for $target");
    44894489while(<SCAN>) {
    44904490    $ecdsa = 1 if ($_ =~ /ecdsa-/);
  • pbconf/0.13.2/project-builder/pbcl

    r2038 r2046  
    44
    550.13.2 (2016-02-17)
     6- pb now scans VM or RM to detect whether they support ECDSA. If yes, then use the pb_ecdsa key file, if not, back to DSA. But that forces also to change the cleanup of the authorized_keys file on the VM|RM to be done once the VM is launched to have the scan working (Bruno Cornec)
    67- Fix an issue when the VM is already launched during the ssh setup a wrong port was used (Bruno Cornec)
    78- Improve git support where pbconf is upstream in the main directory of a simple project (Bruno Cornec)
  • pbconf/devel/project-builder/pbcl

    r2031 r2046  
    77
    880.13.2 (2016-02-17)
     9- pb now scans VM or RM to detect whether they support ECDSA. If yes, then use the pb_ecdsa key file, if not, back to DSA. But that forces also to change the cleanup of the authorized_keys file on the VM|RM to be done once the VM is launched to have the scan working (Bruno Cornec)
    910- Fix an issue when the VM is already launched during the ssh setup a wrong port was used (Bruno Cornec)
    1011- Improve git support where pbconf is upstream in the main directory of a simple project (Bruno Cornec)
Note: See TracChangeset for help on using the changeset viewer.