From f7d9dc0ba204a4b69d0dd3a8a32bc88f6954f982 Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Wed, 7 Oct 2015 15:49:49 -0700 Subject: [PATCH] joyent/node-triton#40 Divorce wanted between profile `keyId` and keyId actually sent to server fixes #40 --- CHANGES.md | 2 ++ lib/cloudapi2.js | 1 - package.json | 6 +++++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 3f95e64..953d434 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,8 @@ ## 2.1.1 (not yet released) +- #40 Update smartdc-auth so that newer OpenSSH `ssh-keygen` default + fingerprint formats for setting `keyId` work. - #39 Test suite: Change the test config 'destructiveAllowed' var to 'writeActionsAllowed'. diff --git a/lib/cloudapi2.js b/lib/cloudapi2.js index 40e6b30..146a7c6 100644 --- a/lib/cloudapi2.js +++ b/lib/cloudapi2.js @@ -31,7 +31,6 @@ */ var assert = require('assert-plus'); -var auth = require('smartdc-auth'); var format = require('util').format; var LOMStream = require('lomstream').LOMStream; var os = require('os'); diff --git a/package.json b/package.json index 509a973..ad474b6 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "restify-clients": "1.1.0", "restify-errors": "3.0.0", "sshpk": "1.2.1", - "smartdc-auth": "git+https://github.com/joyent/node-smartdc-auth.git#3be3c1e", + "smartdc-auth": "2.1.2", "strsplit": "1.0.0", "tabula": "1.6.1", "tilde-expansion": "0.0.0", @@ -37,6 +37,10 @@ "bin": { "triton": "./bin/triton" }, + "repository": { + "type": "git", + "url": "git://github.com/joyent/node-triton.git" + }, "engines": { "node": ">=0.10" },