Skip to content

Instantly share code, notes, and snippets.

@jthmiranda
Created September 10, 2014 20:17
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 jthmiranda/1270584c570fc249c1cc to your computer and use it in GitHub Desktop.
Save jthmiranda/1270584c570fc249c1cc to your computer and use it in GitHub Desktop.
provision para agregar una receta y setear configuración de postgresql
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = "cookbooks"
chef.log_level = "debug"
chef.add_recipe "odoo"
#chef.json = {
# :postgresql => {
# :version => "9.3",
# :listen_address => "*",
# :hba => [
# { :method => "trust", :address => "0.0.0.0/0"},
# { :method => "trust", :address => "::1/0"}
# ],
# :password => {
# :postgres => "openuser"
# }
# }
#}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment