Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
salt-formulas
postgresql-formula
Commits
d8adbca4
Commit
d8adbca4
authored
Jul 14, 2020
by
Julien Cigar
🤘
Browse files
add support for TEMPLATE and LC_CTYPE
parent
a4a66c76
Changes
1
Hide whitespace changes
Inline
Side-by-side
postgresql/server.sls
View file @
d8adbca4
...
...
@@ -147,6 +147,12 @@ postgresql_database_{{ k }}:
- name: {{ k }}
- owner: {{ v.owner }}
- user: {{ pgsql.lookup.user }}
{% if v.lc_ctype is defined %}
- lc_ctype: {{ v.lc_ctype }}
{% endif %}
{% if v.template is defined %}
- template: {{ v.template }}
{% endif %}
- require:
- postgres_user: {{ v.owner }}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment