aboutsummaryrefslogtreecommitdiffstats
path: root/roles/mastodon/tasks/database.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/mastodon/tasks/database.yml')
-rw-r--r--roles/mastodon/tasks/database.yml23
1 files changed, 23 insertions, 0 deletions
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