-
-
Save exoer/1063712 to your computer and use it in GitHub Desktop.
Create postgres users and databases from Chef
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include_recipe "postgresql::server90" | |
# inspiration from | |
# https://gist.github.com/637579 | |
execute "create-root-user" do | |
code = <<-EOH | |
psql -U postgres -c "select * from pg_user where usename='root'" | grep -c root | |
EOH | |
command "createuser -U postgres -s root" | |
not_if code | |
end | |
execute "create-database-user" do | |
code = <<-EOH | |
psql -U postgres -c "select * from pg_user where usename='#{node[:dbuser]}'" | grep -c #{node[:dbuser]} | |
EOH | |
command "createuser -U postgres -sw #{node[:dbuser]}" | |
not_if code | |
end | |
execute "create-database" do | |
exists = <<-EOH | |
psql -U postgres -c "select * from pg_database WHERE datname='#{node[:dbname]}'" | grep -c #{node[:dbname]} | |
EOH | |
command "createdb -U postgres -O #{node[:dbuser]} -E utf8 -T template0 #{node[:dbname]}" | |
not_if exists | |
end | |
# content in node.json | |
#{ | |
# "postgresql" : { | |
# "version": 9.0, | |
# "dir": "/etc/postgresql/9.0/main" | |
# }, | |
# "dbuser": "user", | |
# "dbname": "db" | |
#} |
I have it in a file on the path:
chef/cookbooks/postgresql/recipes/client.rb
database_user
in https://github.com/opscode-cookbooks/database also seems to accomplish this... (posting here since it was the first google result)
I'm just now coming from this cookbook: Looks good in theory, but has a lot of unnecessary dependencies on other cookbooks like mysql, aws, xfs - I'd rather use something more focused on dealing with postgres...
The database cookbook is also very awkward to reliably reset a postgresql password with.
Only r.entries[0]['count'] == '0'
worked out for me
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Where should this code live?