feat: add postgres support

This commit is contained in:
Clément Désiles
2025-11-10 18:24:43 +01:00
parent 2c8f49191c
commit 83b6a38999
8 changed files with 409 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
---
- name: Restart PostgreSQL
ansible.builtin.systemd:
name: "{{ postgres_service_name }}"
state: restarted
- name: Reload PostgreSQL
ansible.builtin.systemd:
name: "{{ postgres_service_name }}"
state: reloaded