courseworkrep/roles/postgresql/tasks/initialize.yml

11 lines
256 B
YAML
Raw Permalink Normal View History

2024-11-10 21:17:33 +00:00
- name: PostgreSQL initdb
command: sudo -u postgres initdb -D /var/lib/pgsql/data
args:
creates: /var/lib/pgsql/data/PG_VERSION
2024-12-08 19:11:48 +00:00
2024-11-10 21:17:33 +00:00
- name: Systemctl start and enable PostgreSQL
service:
name: postgresql
state: started
enabled: true