TritonDataCenter / node-manta-sync

Rsync style command for Joyent's Manta
31 stars 9 forks source link

SHA256 key fingerprints not supported #20

Closed misterbisson closed 8 years ago

misterbisson commented 8 years ago

I usually generate my MANTA_KEY_ID with:

MANTA_KEY_ID=$(ssh-keygen -l -f <private key path> | awk '{print $2}')

But that SHA256 fingerprint causes errors:

unknown error: SHA256:bTh6bXMMAD... not found in: <user directory>.ssh

This works around the problem:

MANTA_KEY_ID=$(ssh-keygen -yl -E md5 -f <private key path> | awk '{print substr($2,5)}')

But, it would be very nice if node-manta-sync supported SHA256 key fingerprints the same way node-triton does.

bahamas10 commented 8 years ago
$ npm publish
+ manta-sync@0.3.3

should be fixed, thanks!