mastible/roles/mastodon-postgresql/tasks/main.yml

22 lines
562 B
YAML
Raw Normal View History

---
2017-11-26 21:50:14 +00:00
# This role installs the PostgreSQL server daemon and creates the mastodon
# database user
- name: Install PostgreSQL server and related packages
apt: name={{ packages }} state=latest update_cache=yes
vars:
packages:
2017-11-26 21:50:14 +00:00
- postgresql
- postgresql-contrib
- python-psycopg2
- name: Add Mastodon PostgreSQL database user
postgresql_user:
name: mastodon
role_attr_flags: CREATEDB
state: present
become: true
become_user: postgres
- name: Run PostgreSQL install tasks
include_tasks: install.yml
when: install is defined