From 865e2f05621fc10f3d332d3840707997c0b94abf Mon Sep 17 00:00:00 2001 From: Stonewall Jackson Date: Mon, 12 Jun 2023 21:02:22 -0400 Subject: add mastodon role --- roles/mastodon/tasks/database.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 roles/mastodon/tasks/database.yml (limited to 'roles/mastodon/tasks/database.yml') diff --git a/roles/mastodon/tasks/database.yml b/roles/mastodon/tasks/database.yml new file mode 100644 index 0000000..37f6dcd --- /dev/null +++ b/roles/mastodon/tasks/database.yml @@ -0,0 +1,23 @@ +- name: create database user + postgresql_user: + name: '{{ mastodon_db_user }}' + password: '{{ mastodon_db_password }}' + role_attr_flags: CREATEDB + state: present + environment: + PGOPTIONS: "-c password_encryption=scram-sha-256" + delegate_to: "{{ postgresql_inventory_host }}" + become: yes + become_user: postgres + register: mastodon_db_user + +- name: create database schema + command: + chdir: '{{ mastodon_install_dir }}' + cmd: 'bundle exec rake db:setup' + environment: + RAILS_ENV: production + SAFETY_ASSURED: 1 + become: yes + become_user: '{{ mastodon_user }}' + when: mastodon_db_user.changed -- cgit