src.nth.io/

summaryrefslogtreecommitdiff
path: root/postgresql/tasks/main.yaml
blob: 6195840991edc071fc45934588cd2df3d99ee4e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---

- name: install postgresql
  become: yes
  apt: name="{{postgresql_apt_packages}}"

- name: configure postgresql data dir
  become: yes
  lineinfile:
    path: "{{postgresql_config_path}}"
    regexp: "^data_directory = "
    line: "data_directory = '{{postgresql_data_dir}}'"
  notify: restart postgres

- name: create postgresql data dir
  become: yes
  file:
    path: "{{postgresql_data_dir}}"
    state: "directory"
    mode: "0700"
    owner: "postgres"
    group: "postgres"
  notify: restart postgres

- name: ensure postgresql is started
  become: yes
  systemd: name="postgresql" enabled="yes" state="started"