mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 09:40:26 +00:00
12 lines
413 B
Text
12 lines
413 B
Text
![]() |
{% from "postgres/map.jinja" import postgres with context %}
|
||
|
|
||
|
{% if grains['os'] == 'Ubuntu' %} # Other distro support should be added here
|
||
|
install-postgresql-repo:
|
||
|
pkgrepo.managed:
|
||
|
- humanname: PostgreSQL Official Repository
|
||
|
- name: {{ postgres.pkg_repo }}
|
||
|
- keyid: B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8
|
||
|
- keyserver: keyserver.ubuntu.com
|
||
|
- file: {{ postgres.pkg_repo_file }}
|
||
|
{% endif %}
|