|
| 1 | +# Forked from https://github.com/fup/puppet-ssh @ 59684a8ae174 |
| 2 | +# |
| 3 | +# Arguments |
| 4 | +# 0: The keyname (e.g. id_rsa) |
| 5 | +# 1: (optional) the keytype to read (public or private) |
| 6 | +# |
| 7 | +module Puppet::Parser::Functions |
| 8 | + newfunction(:ssh_keygen, :type => :rvalue) do |args| |
| 9 | + args[1].nil? ? request = :public : request = args[1].to_sym |
| 10 | + |
| 11 | + config = { |
| 12 | + :ssh_dir => 'ssh', |
| 13 | + :ssh_comment => args[0].chomp, |
| 14 | + :ssh_key_type => 'rsa', |
| 15 | + |
| 16 | + } |
| 17 | + |
| 18 | + File.directory?('/etc/puppetlabs/puppet') ? config[:basedir] = '/etc/puppetlabs/puppet' : config[:basedir] = '/etc/puppet' |
| 19 | + |
| 20 | + # Error Handling |
| 21 | + unless args.length >= 1 then |
| 22 | + raise Puppet::ParseError, "ssh_keygen(): wrong number of arguments (#{args.length}; must be > 1)" |
| 23 | + end |
| 24 | + |
| 25 | + unless (request == :public || request == :private) then |
| 26 | + raise Puppet::ParseError, "ssh_keygen(): invalid key type (#{request}; must be 'public' or 'private')" |
| 27 | + end |
| 28 | + |
| 29 | + # Make sure to write out a directory to init if necessary |
| 30 | + begin |
| 31 | + if !File.directory?("#{config[:basedir]}/#{config[:ssh_dir]}") |
| 32 | + Dir::mkdir("#{config[:basedir]}/#{config[:ssh_dir]}") |
| 33 | + end |
| 34 | + rescue => e |
| 35 | + raise Puppet::ParseError, "ssh_keygen(): Unable to setup ssh keystore directory (#{e})" |
| 36 | + end |
| 37 | + |
| 38 | + # Do my keys exist? Well, keygen if they don't! |
| 39 | + begin |
| 40 | + unless File.exists?("#{config[:basedir]}/#{config[:ssh_dir]}/#{config[:ssh_comment]}") then |
| 41 | + %x[/usr/bin/ssh-keygen -t #{config[:ssh_key_type]} -P '' -f #{config[:basedir]}/#{config[:ssh_dir]}/#{config[:ssh_comment]}] |
| 42 | + end |
| 43 | + rescue => e |
| 44 | + raise Puppet::ParseError, "ssh_keygen(): Unable to generate ssh key (#{e})" |
| 45 | + end |
| 46 | + |
| 47 | + # Return ssh key content based on request |
| 48 | + begin |
| 49 | + case request |
| 50 | + when :private |
| 51 | + return File.open("#{config[:basedir]}/#{config[:ssh_dir]}/#{config[:ssh_comment]}").read |
| 52 | + else |
| 53 | + pub_key = File.open("#{config[:basedir]}/#{config[:ssh_dir]}/#{config[:ssh_comment]}.pub").read |
| 54 | + return pub_key.scan(/^.* (.*) .*$/)[0][0] |
| 55 | + end |
| 56 | + rescue => e |
| 57 | + raise Puppet::ParseError, "ssh_keygen(): Unable to read ssh #{request.to_s} key (#{e})" |
| 58 | + end |
| 59 | + end |
| 60 | +end |
0 commit comments