@@ -8,21 +8,7 @@ postgres.port: '5433'
8
8
{%- endif %}
9
9
10
10
postgres :
11
- # UPSTREAM REPO
12
- # Set True to configure upstream postgresql.org repository for YUM/APT/ZYPP
13
- {%- if grains.os_family != 'Debian' and salt['grains.get']('osfinger') != 'CentOS-6' %}
14
- use_upstream_repo : False
15
- {%- else %}
16
- use_upstream_repo : True
17
- # Version to install from upstream repository (if upstream_repo: True)
18
- version : ' 13'
19
- # # Set True to add a file in /etc/profile.d adding the bin dir in $PATH
20
- # # as packages from upstream put them somewhere like /usr/pgsql-10/bin
21
- # add_profile: False
22
- # # If automatic package installation fails, use `fromrepo` to specify the
23
- # # upstream repo to install packages from [#133, #185] (if upstream_repo: True)
24
- # fromrepo: 'jessie-pgdg'
25
- {%- endif %}
11
+ use_upstream_repo : false
26
12
27
13
# ### MACOS
28
14
# # Set to 'postgresapp' OR 'homebrew' for MacOS
@@ -177,7 +163,8 @@ postgres:
177
163
public :
178
164
owner : localUser
179
165
# enable per-db extension
180
- {%- if grains.os_family == 'Debian' and salt['grains.get']('osfinger') != 'Debian-8' %}
166
+ {#- TODO: Find a way to only disable this for the `default` suite, since it works with the `repo` suite # }
167
+ {%- if grains.os_family == 'Debian' and salt['grains.get']('osfinger') != 'Debian-9' %}
181
168
extensions :
182
169
uuid-ossp :
183
170
schema : ' public'
@@ -190,7 +177,8 @@ postgres:
190
177
owner : localUser
191
178
192
179
# optional extensions to install in schema
193
- {%- if grains.os_family == 'Debian' and salt['grains.get']('osfinger') != 'Debian-8' %}
180
+ {#- TODO: Find a way to only disable this for the `default` suite, since it works with the `repo` suite # }
181
+ {%- if grains.os_family == 'Debian' and salt['grains.get']('osfinger') != 'Debian-9' %}
194
182
extensions :
195
183
uuid-ossp :
196
184
schema : uuid-ossp
0 commit comments