]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/postgresql/templates/default/pg_hba.conf.erb
Add a load more cookbooks
[chef.git] / cookbooks / postgresql / templates / default / pg_hba.conf.erb
diff --git a/cookbooks/postgresql/templates/default/pg_hba.conf.erb b/cookbooks/postgresql/templates/default/pg_hba.conf.erb
new file mode 100644 (file)
index 0000000..18b490c
--- /dev/null
@@ -0,0 +1,12 @@
+# DO NOT EDIT - This file is being maintained by Chef
+
+# TYPE DATABASE        USER            ADDRESS                 METHOD
+<% @early_rules.each do |rule| -%>
+<%= rule[:type] || "host" %>   <%= rule[:database] || "all" %>         <%= rule[:user] || "all" %>             <%= rule[:address] %>           <%= rule[:method] || "md5" %> <%= (rule[:options] || {}).collect { |k,v| "#{k}=#{v}" }.join(" ") %>
+<% end -%>
+local  all             all                                     peer
+host   all             all             127.0.0.1/32            md5
+host   all             all             ::1/128                 md5
+<% @late_rules.each do |rule| -%>
+<%= rule[:type] || "host" %>   <%= rule[:database] || "all" %>         <%= rule[:user] || "all" %>             <%= rule[:address] %>           <%= rule[:method] || "md5" %> <%= (rule[:options] || {}).collect { |k,v| "#{k}=#{v}" }.join(" ") %>
+<% end -%>