Update to 2022-02-07 10:00

This commit is contained in:
Daniel Berteaud 2022-02-07 10:00:15 +01:00
parent d3d3531bd6
commit 3d88ece7a9
3 changed files with 6 additions and 6 deletions

View File

@ -9,6 +9,7 @@ dependencies:
- role: iptables - role: iptables
when: iptables_manage | default(True) when: iptables_manage | default(True)
- role: zabbix_agent - role: zabbix_agent
when: zabbix_agent_servers | length > 0 or zabbix_agent_servers_active | length > 0
- role: fusioninventory_agent - role: fusioninventory_agent
when: fusinv_uri is defined and fusinv_uri | length > 0 when: fusinv_uri is defined and fusinv_uri | length > 0
- role: sssd_ldap_auth - role: sssd_ldap_auth

View File

@ -1,11 +1,11 @@
--- ---
# Version to deploy # Version to deploy
sftpgo_version: 2.2.1 sftpgo_version: 2.2.2
# URL of the archive # URL of the archive
sftpgo_archive_url: https://github.com/drakkan/sftpgo/releases/download/v{{ sftpgo_version }}/sftpgo_v{{ sftpgo_version }}_linux_x86_64.tar.xz sftpgo_archive_url: https://github.com/drakkan/sftpgo/releases/download/v{{ sftpgo_version }}/sftpgo_v{{ sftpgo_version }}_linux_x86_64.tar.xz
# Expected sha1 of the archive # Expected sha1 of the archive
sftpgo_archive_sha1: 4c19aea45aacc538044f96952e9c45bc3888a750 sftpgo_archive_sha1: 23c89d4165c0800aa6a3077f7a3dbcf63b3709a2
# Should ansible handle upgrades ? If False, only initial install will be done # Should ansible handle upgrades ? If False, only initial install will be done
sftpgo_manage_upgrade: True sftpgo_manage_upgrade: True

View File

@ -4,12 +4,11 @@ zabbix_agent_port: 10050
zabbix_agent2: False zabbix_agent2: False
# List of servers allowed to connect to the agent (passive checks) # List of servers allowed to connect to the agent (passive checks)
zabbix_agent_servers: zabbix_agent_servers: []
- 51.91.175.34
# List of IP allowed to access TCP port 10050 # List of IP allowed to access TCP port 10050
zabbix_agent_src_ip: "{{ zabbix_agent_servers }}" zabbix_agent_src_ip: "{{ zabbix_agent_servers }}"
# List of servers the agent will push active checks to # List of servers the agent will push active checks to
zabbix_agent_server_active: [] zabbix_agent_servers_active: []
zabbix_agent_base_conf: zabbix_agent_base_conf:
PidFile: /var/run/zabbix/zabbix_agentd.pid PidFile: /var/run/zabbix/zabbix_agentd.pid
@ -17,7 +16,7 @@ zabbix_agent_base_conf:
LogType: system LogType: system
Server: "{{ zabbix_agent_servers | join(',') }}" Server: "{{ zabbix_agent_servers | join(',') }}"
ListenPort: "{{ zabbix_agent_port }}" ListenPort: "{{ zabbix_agent_port }}"
ServerActive: "{{ zabbix_agent_server_active | join(',') }}" ServerActive: "{{ zabbix_agent_servers_active | join(',') }}"
HostnameItem: 'system.hostname' HostnameItem: 'system.hostname'
Timeout: 29 # just a bit less than the proxies' Timeout Timeout: 29 # just a bit less than the proxies' Timeout
Include: '/etc/zabbix/zabbix_agentd.conf.d/*.conf' Include: '/etc/zabbix/zabbix_agentd.conf.d/*.conf'