Sha256: 06f879a6b5abda416afaff158dfb5eef92eea03140f7d907cde91dc39f718caa
Contents?: true
Size: 1.54 KB
Versions: 2
Compression:
Stored size: 1.54 KB
Contents
# -*- coding: utf-8 -*- require 'tmpdir' module Dcmgr::Models # SSH Key database for account. class SshKeyPair < AccountResource taggable 'ssh' def before_destroy # TODO: check running instances which are associated to ssh key # pairs. reject deletion if exist. super end # # @return [Hash] {:private_key=>'pkey string', # :public_key=>'pubkey string'} def self.generate_key_pair(name) pkey = File.expand_path(randstr, Dir.tmpdir) pubkey = pkey + '.pub' begin system("ssh-keygen -q -t rsa -C '%s' -N '' -f %s >/dev/null" % [name, pkey]) unless $?.exitstatus == 0 raise "Failed to run ssh-keygen: exitcode=#{$?.exitstatus}" end # get finger print of pkey file fp = `ssh-keygen -l -f #{pkey}` unless $?.exitstatus == 0 raise "Failed to collect finger print value" end fp = fp.split(/\s+/)[1] {:private_key=>IO.read(pkey), :public_key=>IO.read(pubkey), :finger_print => fp} rescue # clean up tmp key files [pkey, pubkey].each { |i| File.unlink(i) if File.exist?(i) } end end def to_api_document super end def self.entry_new(account, &blk) raise ArgurmentError unless account.is_a?(Account) ssh = self.new &blk ssh.account_id = account.canonical_uuid ssh end private def self.randstr Array.new(10) { (('a'..'z').to_a + (0..9).to_a)[rand(36)] }.join end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
wakame-vdc-agents-11.12.0 | lib/dcmgr/models/ssh_key_pair.rb |
wakame-vdc-dcmgr-11.12.0 | lib/dcmgr/models/ssh_key_pair.rb |