Merge pull request #150 from vutny/fix-141

Fix issue #141
This commit is contained in:
Javier Bértoli 2017-02-16 20:09:40 -03:00 committed by GitHub
commit 1d950295f4
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ postgres:
# Backup extension for configuration files, defaults to ``.bak``.
# Set ``False`` to stop creation of backups when config files change.
{%- if 'status.time' in salt.keys() %}
{%- if salt['status.time']|default(none) is callable %}
config_backup: ".backup@{{ salt['status.time']('%y-%m-%d_%H:%M:%S') }}"
{%- endif %}

View file

@ -1,7 +1,7 @@
{%- from "postgres/map.jinja" import postgres with context -%}
{%- from "postgres/macros.jinja" import format_state with context -%}
{%- if not salt.get('postgres.user_create') %}
{%- if salt['postgres.user_create']|default(none) is not callable %}
# Salt states for managing PostgreSQL is not available,
# need to provision client binaries first