Making initdb command overridable

This commit is contained in:
Devon Stewart 2015-11-06 00:02:00 -08:00
parent ec8d37e0e6
commit 40b3729341
2 changed files with 3 additions and 1 deletions

View file

@ -30,7 +30,7 @@ postgresql-initdb:
cmd.run:
- cwd: /
- user: root
- name: service postgresql initdb
- name: {{ postgres.commands.initdb }}
- unless: test -f {{ postgres.conf_dir }}/postgresql.conf
- env:
LC_ALL: C.UTF-8

View file

@ -5,3 +5,5 @@ Arch: {}
Debian:
pkg_repo_file: /etc/apt/sources.list.d/pgdg.list
pkg_libpq_dev: libpq-dev
commands:
initdb: service postgresql initdb