Skip to content

Instantly share code, notes, and snippets.

@micw
Created October 22, 2015 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save micw/e10ab9c62268f007c604 to your computer and use it in GitHub Desktop.
Save micw/e10ab9c62268f007c604 to your computer and use it in GitHub Desktop.
#!/usr/bin/ruby
hash=eval(ARGV[0])
hash.each do |key, value|
puts "["+key+"]"
value.collect do |host|
puts host+" ansible_connection=local"
end
puts
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment