delete unused role

This commit is contained in:
Nils Norman Haukås 2024-03-20 08:38:48 +01:00
parent ee957253c8
commit fbbed12928

View file

@ -1,22 +0,0 @@
- name: install postgres
package:
name:
- postgresql
- python-psycopg2
# needed because we need to become the unprivileged postgres user.
- acl
state: latest
- name: create gitea database
postgresql_db:
name: giteadb
become: yes
become_user: postgres
- name: create gitea postgres user
postgresql_user:
db: giteadb
name: gitea
password: "{{ gitea_postgres_pw }}"
become: yes
become_user: postgres