dj-wasabi/ansible-zabbix-agent

Windows task is missing PSK creation step

toddhos opened this issue · 0 comments

I noticed that the Windows agent task is missing PSK file creation step before the service start which causes the service to error out when attempting to start. The Linux task has the step.

To resolve you could add:

  • name: "Place TLS PSK File"
    win_copy:
    dest: "{{ zabbix_agent_tlspskfile }}"
    content: "{{ zabbix_agent_tlspsk_secret }}"
    when:
    • zabbix_agent_tlspskfile is defined
    • zabbix_agent_tlspsk_secret is defined
      notify: restart win zabbix agent