src.nth.io/

summaryrefslogtreecommitdiff
path: root/postgresql/tasks/main.yaml
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2020-02-09 12:08:03 -0600
committerLuke Hoersten <[email protected]>2020-02-09 12:08:03 -0600
commitc17f28aafd1f15a8c26835196956c1c209ec5ff3 (patch)
tree471a2637b3d3b7551845af91c86be54586c2d2e5 /postgresql/tasks/main.yaml
parent11746a2c064018a642486b208b2fdcaeae8ea8e5 (diff)
Moved roles to top level dir.
Diffstat (limited to 'postgresql/tasks/main.yaml')
-rw-r--r--postgresql/tasks/main.yaml27
1 files changed, 27 insertions, 0 deletions
diff --git a/postgresql/tasks/main.yaml b/postgresql/tasks/main.yaml
new file mode 100644
index 0000000..6195840
--- /dev/null
+++ b/postgresql/tasks/main.yaml
@@ -0,0 +1,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"