Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ansible/tasks/setup-system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,13 @@
value: 60
state: 'present'

# postgres_exporter runs on port 9187 and postgresT occasionlly chooses it as random srcport
- name: Set net.ipv4.ip_local_reserved_ports=9187
ansible.builtin.sysctl:
name: 'net.ipv4.ip_local_reserved_ports'
value: 9187
state: 'present'

- name: Execute tasks when (debpkg_mode or nixpkg_mode)
when:
- (debpkg_mode or nixpkg_mode)
Expand Down
Loading