fix internal var name

This commit is contained in:
Robert Kaussow 2018-10-16 00:24:24 +02:00
parent 682d293d45
commit 3789517c77
1 changed files with 2 additions and 2 deletions

View File

@ -30,11 +30,11 @@
- name: Check if database is initialized
stat:
path: "{{ postgres_data_dir }}/PG_VERSION"
register: pgdata_dir_version
register: __pgdata_dir_version
- name: Ensure database is initialized
command: "/usr/pgsql-{{ __postgres_version }}/bin/postgresql-{{ __postgres_version }}-setup initdb"
when: not pgdata_dir_version.stat.exists
when: not __pgdata_dir_version.stat.exists
become: true
become_user: "{{ postgres_user }}"
become: True