File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 183
183
ansible.posix.sysctl :
184
184
name : ' net.ipv4.ip_local_port_range'
185
185
value : ' 1025 65000'
186
+
187
+ # Set Sysctl params specific to keepalives
188
+ - name : Set net.ipv4.tcp_keepalive_time=1800
189
+ ansible.builtin.sysctl :
190
+ name : net.ipv4.tcp_keepalive_time
191
+ value : 1800
192
+ state : present
193
+ when : debpkg_mode or nixpkg_mode
194
+ - name : Set net.ipv4.tcp_keepalive_intvl=60
195
+ ansible.builtin.sysctl :
196
+ name : net.ipv4.tcp_keepalive_intvl
197
+ value : 60
198
+ state : present
199
+ when : debpkg_mode or nixpkg_mode
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ postgres_major:
8
8
9
9
# Full version strings for each major version
10
10
postgres_release :
11
- postgresorioledb-17 : " 17.0.1.021 -orioledb"
12
- postgres15 : " 15.8.1.031 "
11
+ postgresorioledb-17 : " 17.0.1.022 -orioledb"
12
+ postgres15 : " 15.8.1.032 "
13
13
14
14
# Non Postgres Extensions
15
15
pgbouncer_release : " 1.19.0"
You can’t perform that action at this time.
0 commit comments