Files
database/roles/install_postgres/tasks/main.yml
ytshih 32d815621d
Some checks failed
Ansible Playbook lint & deploy / ansible-lint (push) Successful in 12s
Ansible Playbook lint & deploy / run-ansible-mongo (push) Failing after 6s
Ansible Playbook lint & deploy / run-ansible-postgres (push) Failing after 7s
Initial commit
2024-12-03 00:56:20 +00:00

13 lines
273 B
YAML

---
- name: Update packages
community.general.pacman:
update_cache: true
- name: Install postgres
community.general.pacman:
pkg:
- postgresql
- python-psycopg2
notify: Upgrade packages
- name: Flush handlers
ansible.builtin.meta: flush_handlers