/usr/bin/extlookup2hiera is in puppet-common 3.4.3-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | #!/usr/bin/ruby
require 'optparse'
require 'csv'
options = {:in => nil, :out => nil, :format => :yaml}
OptionParser.new do |opts|
opts.banner = "Converter for extlookup CSV files into Hiera JSON and YAML files"
opts.on("--in FILE", "-i", "Input CSV file") do |v|
options[:in] = v
end
opts.on("--out FILE", "-o", "Output Hiera file") do |v|
options[:out] = v
end
opts.on("--json", "-j", "Create JSON format file") do |v|
options[:format] = :json
end
end.parse!
if options[:in].nil? || options[:out].nil?
STDERR.puts "Please specify an input and output file with --in and --out"
exit 1
end
unless File.exist?(options[:in])
STDERR.puts "Cannot find input file #{options[:in]}"
exit 1
end
csvdata = CSV.read(options[:in])
hieradata = {}
csvdata.each do |d|
d = d.map{|item| item.to_s}
if d.size > 2
hieradata[d[0]] = d[1, d.size].flatten
else
hieradata[d[0]] = d[1]
end
end
case options[:format]
when :yaml
require 'yaml'
File.open(options[:out], "w") {|f| f.write hieradata.to_yaml}
when :json
require 'rubygems'
require 'json'
File.open(options[:out], "w") {|f| f.write JSON.pretty_generate hieradata}
end
|