Removed Windows option for Ansible executor node
This commit is contained in:
parent
c56ea57025
commit
299c59ca13
@ -21,13 +21,13 @@
|
|||||||
stat:
|
stat:
|
||||||
path: "{{ local_certs_path }}/wazuh-certs-tool.sh"
|
path: "{{ local_certs_path }}/wazuh-certs-tool.sh"
|
||||||
register: tool_package
|
register: tool_package
|
||||||
when: ansible_os_family != 'Darwin' or ansible_os_family != 'Windows'
|
when: ansible_os_family == 'Darwin'
|
||||||
|
|
||||||
- name: Local action | Download certificates generation tool
|
- name: Local action | Download certificates generation tool
|
||||||
get_url:
|
get_url:
|
||||||
url: "{{ certs_gen_tool_url }}"
|
url: "{{ certs_gen_tool_url }}"
|
||||||
dest: "{{ local_certs_path }}/wazuh-certs-tool.sh"
|
dest: "{{ local_certs_path }}/wazuh-certs-tool.sh"
|
||||||
when: not tool_package.stat.exists and ansible_os_family != 'Darwin' or ansible_os_family != 'Windows'
|
when: not (tool_package.stat.exists | default(1)) and ansible_os_family == 'Darwin'
|
||||||
|
|
||||||
- name: Local action | Prepare the certificates generation template file
|
- name: Local action | Prepare the certificates generation template file
|
||||||
template:
|
template:
|
||||||
@ -35,29 +35,23 @@
|
|||||||
dest: "{{ local_certs_path }}/config.yml"
|
dest: "{{ local_certs_path }}/config.yml"
|
||||||
mode: 0644
|
mode: 0644
|
||||||
register: tlsconfig_template
|
register: tlsconfig_template
|
||||||
when: ansible_os_family != 'Darwin' or ansible_os_family != 'Windows'
|
when: ansible_os_family == 'Darwin'
|
||||||
|
|
||||||
- name: Local action | Generate the node & admin certificates in local
|
- name: Local action | Generate the node & admin certificates in local
|
||||||
command: >-
|
command: >-
|
||||||
bash {{ local_certs_path }}/wazuh-certs-tool.sh -A
|
bash {{ local_certs_path }}/wazuh-certs-tool.sh -A
|
||||||
when: ansible_os_family != 'Darwin' or ansible_os_family != 'Windows'
|
when: ansible_os_family == 'Darwin'
|
||||||
|
|
||||||
- name: Local action | Check for Docker installation on macOS
|
- name: Local action | Check for Docker installation on macOS
|
||||||
command: docker --version
|
command: docker --version
|
||||||
register: docker_check
|
register: docker_check
|
||||||
when: os_family == 'Darwin'
|
when: ansible_os_family != 'Darwin'
|
||||||
ignore_errors: yes
|
|
||||||
|
|
||||||
- name: Local action | Check for Docker installation on Windows
|
|
||||||
win_shell: docker --version
|
|
||||||
register: docker_check
|
|
||||||
when: os_family == 'Windows'
|
|
||||||
ignore_errors: yes
|
ignore_errors: yes
|
||||||
|
|
||||||
- name: Local action | Fail if Docker is not installed
|
- name: Local action | Fail if Docker is not installed
|
||||||
fail:
|
fail:
|
||||||
msg: "Docker is not installed on this host."
|
msg: "Docker is not installed on this host."
|
||||||
when: docker_check.rc != 0 and ansible_os_family == 'Darwin' or ansible_os_family == 'Windows'
|
when: (docker_check.rc | default(1)) != 0 and ansible_os_family != 'Darwin'
|
||||||
|
|
||||||
- name: Local action | Run Docker container on macOS
|
- name: Local action | Run Docker container on macOS
|
||||||
community.docker.docker_container:
|
community.docker.docker_container:
|
||||||
@ -68,24 +62,13 @@
|
|||||||
volumes:
|
volumes:
|
||||||
- "{{ local_certs_path }}/config.yml:/config/certs.yml"
|
- "{{ local_certs_path }}/config.yml:/config/certs.yml"
|
||||||
- "{{ local_certs_path }}/wazuh-certificates:/certificates/"
|
- "{{ local_certs_path }}/wazuh-certificates:/certificates/"
|
||||||
when: os_family == 'Darwin'
|
when: ansible_os_family != 'Darwin'
|
||||||
|
|
||||||
- name: Local action | Run Docker container on Windows
|
- name: Local action | Remove Docker image after execution
|
||||||
community.docker.docker_container:
|
|
||||||
name: wazuh-cert-tool
|
|
||||||
image: "wazuh/wazuh-cert-tool"
|
|
||||||
state: started
|
|
||||||
auto_remove: true
|
|
||||||
volumes:
|
|
||||||
- "C:/{{ local_certs_path }}/config.yml:/config/certs.yml"
|
|
||||||
- "{{ local_certs_path }}/wazuh-certificates:C:/certificates/"
|
|
||||||
when: os_family == 'Windows'
|
|
||||||
|
|
||||||
- name: Remove Docker image after execution
|
|
||||||
community.docker.docker_image:
|
community.docker.docker_image:
|
||||||
name: "wazuh/wazuh-cert-tool"
|
name: "wazuh/wazuh-cert-tool"
|
||||||
state: absent
|
state: absent
|
||||||
when: os_family == 'Darwin' or os_family == 'Windows'
|
when: ansible_os_family != 'Darwin'
|
||||||
|
|
||||||
run_once: true
|
run_once: true
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user