postgresql/tasks/main.yaml
changeset 100 ac5e16a08576
parent 99 ed9f4d0ddce3
child 101 bce4a3fd8da8
--- a/postgresql/tasks/main.yaml	Mon Jun 08 17:18:28 2020 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
----
-
-- 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"