Compare commits

..

No commits in common. "e6c0cc02a3852066c659012f42e0c8160ff6cb5b" and "a1bab06126e447d96816dd9fe98b392833b07278" have entirely different histories.

1 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,12 @@
---
- name: Make Work directory
ansible.builtin.file:
path: "{{ work_path }}"
owner: filebeat
group: filebeat
state: directory
mode: '0755'
- name: Create Filebeat Group
ansible.builtin.group:
name: filebeat
@ -13,14 +21,6 @@
state: present
uid: 1802
- name: Make Work directory
ansible.builtin.file:
path: "{{ work_path }}"
owner: filebeat
group: filebeat
state: directory
mode: '0755'
- name: Install Filebeat
ansible.builtin.unarchive:
src: "{{ filebeat_download_url }}"