From b92644079063a0205c0d7c11a6c7b3d246d4c86d Mon Sep 17 00:00:00 2001 From: Stephen Williams Date: Mon, 27 Mar 2017 16:18:46 -0400 Subject: [PATCH] akamai moved to ssh-dss requiring update to fuel cdn push --- grunt/config/shell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grunt/config/shell.js b/grunt/config/shell.js index fb2cc3ea5..83626bcc1 100644 --- a/grunt/config/shell.js +++ b/grunt/config/shell.js @@ -92,7 +92,7 @@ module.exports = function (grunt) { command: function () { function createUploadCommand (version) { return ['mv dist ' + version, - 'scp -i ~/.ssh/fuelcdn -r "' + version + '"/ ' + + 'scp -i -oHostKeyAlgorithms=+ssh-dss ~/.ssh/fuelcdn -r "' + version + '"/ ' + '<%= cdnLoginFile.user %>' + '@' + '<%= cdnLoginFile.server %>' + ':' + '<%= cdnLoginFile.folder %>', 'mv "' + version + '" dist', 'echo "Done uploading files."'].join(' && ');