Revert "Merge pull request #381 from wazuh/remove_windows_md5_check"
This reverts commit4cc3e077a0, reversing changes made to52a81af988.
This commit is contained in:
parent
4cc3e077a0
commit
2651bc5386
@ -60,6 +60,7 @@ wazuh_winagent_config:
|
|||||||
auth_path: C:\Program Files\ossec-agent\agent-auth.exe
|
auth_path: C:\Program Files\ossec-agent\agent-auth.exe
|
||||||
# Adding quotes to auth_path_x86 since win_shell outputs error otherwise
|
# Adding quotes to auth_path_x86 since win_shell outputs error otherwise
|
||||||
auth_path_x86: C:\'Program Files (x86)'\ossec-agent\agent-auth.exe
|
auth_path_x86: C:\'Program Files (x86)'\ossec-agent\agent-auth.exe
|
||||||
|
md5: 87ce22038688efb44d95f9daff472056
|
||||||
wazuh_winagent_config_url: https://packages.wazuh.com/3.x/windows/wazuh-agent-3.11.4-1.msi
|
wazuh_winagent_config_url: https://packages.wazuh.com/3.x/windows/wazuh-agent-3.11.4-1.msi
|
||||||
wazuh_winagent_package_name: wazuh-agent-3.11.4-1.msi
|
wazuh_winagent_package_name: wazuh-agent-3.11.4-1.msi
|
||||||
wazuh_agent_config:
|
wazuh_agent_config:
|
||||||
|
|||||||
@ -30,6 +30,15 @@
|
|||||||
when:
|
when:
|
||||||
- not wazuh_package_downloaded.stat.exists
|
- not wazuh_package_downloaded.stat.exists
|
||||||
|
|
||||||
|
- name: Windows | Verify the Wazuh Agent installer
|
||||||
|
win_stat:
|
||||||
|
path: "{{ wazuh_winagent_config.download_dir }}{{ wazuh_winagent_package_name }}"
|
||||||
|
get_checksum: true
|
||||||
|
checksum_algorithm: md5
|
||||||
|
register: wazuh_agent_status
|
||||||
|
failed_when:
|
||||||
|
- wazuh_agent_status.stat.checksum != wazuh_winagent_config.md5
|
||||||
|
|
||||||
- name: Windows | Install Agent if not already installed
|
- name: Windows | Install Agent if not already installed
|
||||||
win_package:
|
win_package:
|
||||||
path: "{{ wazuh_winagent_config.download_dir }}{{ wazuh_winagent_package_name }}"
|
path: "{{ wazuh_winagent_config.download_dir }}{{ wazuh_winagent_package_name }}"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user