Changeset 2052 in ProjectBuilder
- Timestamp:
- Feb 21, 2016, 2:04:49 AM (9 years ago)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb/bin/pb
r2049 r2052 4503 4503 open(SCAN,"ssh-keyscan -p $nport -t dsa $target 2>/dev/null |") || pb_log(0,"Unable to check DSA support for $target"); 4504 4504 while(<SCAN>) { 4505 $dsa = 1 if ($_ =~ / dsa-/);4505 $dsa = 1 if ($_ =~ /ssh-dss/); 4506 4506 pb_log(2,"Found DSA support on $target ($nport)\n"); 4507 4507 } -
pbconf/0.13.2/project-builder/pbcl
r2046 r2052 4 4 5 5 0.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) 6 - Fix a bug in script2v by initializing pbstep to 3 as it wasn't defined (use mode) (Bruno Cornec) 7 - Using -s option requires a full path name for the script to work, which is now checked (Bruno Cornec) 8 - Do not call pb_ssh_get when pushing packages to ftp repo (Bruno Cornec) 9 - Use id_* keys only when not in create mode (delivery to repo). Otherwise use pb_* keys (Bruno Cornec) 10 - pb now scans VM or RM to detect whether they support ECDSA for ssh connection (RHEL7 e.g. doesn't support DSA anymore by default). If yes, then use the pb_ecdsa key file. By default favour DSA anyway. 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) 7 11 - Fix an issue when the VM is already launched during the ssh setup a wrong port was used (Bruno Cornec) 8 12 - Improve git support where pbconf is upstream in the main directory of a simple project (Bruno Cornec) -
pbconf/devel/project-builder/pbcl
r2046 r2052 7 7 8 8 0.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) 9 - Fix a bug in script2v by initializing pbstep to 3 as it wasn't defined (use mode) (Bruno Cornec) 10 - Using -s option requires a full path name for the script to work, which is now checked (Bruno Cornec) 11 - Do not call pb_ssh_get when pushing packages to ftp repo (Bruno Cornec) 12 - Use id_* keys only when not in create mode (delivery to repo). Otherwise use pb_* keys (Bruno Cornec) 13 - pb now scans VM or RM to detect whether they support ECDSA for ssh connection (RHEL7 e.g. doesn't support DSA anymore by default). If yes, then use the pb_ecdsa key file. By default favour DSA anyway. 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) 10 14 - Fix an issue when the VM is already launched during the ssh setup a wrong port was used (Bruno Cornec) 11 15 - 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.