Skip to content

Instantly share code, notes, and snippets.

@juanje
Created January 19, 2012 11:14
Show Gist options
  • Save juanje/1639465 to your computer and use it in GitHub Desktop.
Save juanje/1639465 to your computer and use it in GitHub Desktop.
Get sources_list and put into a data_bag
#!/usr/bin/env ruby
require 'chef/search/query'
require 'chef/config'
require 'chef/data_bag'
require 'uri'
# get the config from the closer config file
repo_config_file = File.join('.', '.chef', 'knife.rb')
home_config_file = File.join(ENV['HOME'], '.chef', 'knife.rb') if ENV['HOME']
if File.exist?(repo_config_file)
config_file = repo_config_file
elsif home_config_file
config_file = home_config_file
else
Chef::Log.error("No Chef config file was found")
exit 1
end
Chef::Config.from_file(config_file)
data_bag = 'sources_list'
rest = Chef::REST.new(Chef::Config[:chef_server_url])
# be sure the data_bag exists
data_bags = rest.get_rest('/data')
rest.post_rest('/data', {"name" => data_bag}) unless data_bags.include? data_bag
sources_list = {}
q = Chef::Search::Query.new
q.search(:node, "*:*").first.each do |node|
sources_list.merge!(node.automatic_attrs["sources_list"]) unless node.automatic_attrs["sources_list"].nil?
end
sources_list.each do |s|
item_name = URI.parse(s.first).host.gsub('.','_')
components = {}
s.last["components"].each do |component|
components[component] = {}
end
data_bag_item = {
"id" => item_name,
"server" => s.first,
"packages" => {
s.last["suite"] => components
}
}
p data_bag_item
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment