--- - name: Initialising the site playbook. hosts: all roles: - init tags: - always - name: Running common tasks. hosts: all become: yes become_method: sudo roles: - common tags: - common - name: Installing and configuring PostgreSQL for Pleroma. hosts: pleroma_database become: yes become_method: sudo roles: - pleroma-postgres tags: - pleroma-postgres - name: Installing and configuring the Pleroma backend. hosts: pleroma_backend become: yes become_method: sudo roles: - pleroma-backend tags: - pleroma-be - name: Installing and configuring Nginx for Pleroma. hosts: pleroma_webserver become: yes become_method: sudo roles: - pleroma-nginx tags: - pleroma-nginx