aboutsummaryrefslogtreecommitdiffstats
path: root/roles/mastodon/tasks/database.yml
diff options
context:
space:
mode:
authorStonewall Jackson <stonewall@sacredheartsc.com>2023-06-12 21:02:22 -0400
committerStonewall Jackson <stonewall@sacredheartsc.com>2023-06-12 21:02:22 -0400
commit865e2f05621fc10f3d332d3840707997c0b94abf (patch)
treeb5f0c85951175b813996991298501c6afb012824 /roles/mastodon/tasks/database.yml
parent78fd379d33bd6853123c02a76c97ca382aa24be9 (diff)
downloadselfhosted-865e2f05621fc10f3d332d3840707997c0b94abf.tar.gz
selfhosted-865e2f05621fc10f3d332d3840707997c0b94abf.zip
add mastodon role
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