Skip to content

Commit

Permalink
add clean task
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippe LEAL committed Aug 20, 2021
1 parent 44d2748 commit c03ec6c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Binary file removed tasks/.install.yml.swp
Binary file not shown.
12 changes: 10 additions & 2 deletions tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
group: root
mode: '0644'

- name: Install ca-certificates package
- name: "Install ca-certificates package"
package:
name: ca-certificates
state: present
Expand All @@ -50,7 +50,7 @@
dest: "/tmp/"
mode: '1777'

- name: Install build requierement packages
- name: "Install build requirement packages"
package:
name: "{{ item }}"
state: present
Expand Down Expand Up @@ -125,6 +125,14 @@
notify:
- start fluent-bit

- name: "Clean source temp directory"
file:
path: "{{ item }}"
state: absent
with_items:
- "/tmp/fluent-bit-{{ fluentbit_version }}"
- "/tmp/{{ fluentbit_tgz }}"

- name: "Modify hard nofile limits for root domain"
pam_limits:
domain: root
Expand Down

0 comments on commit c03ec6c

Please sign in to comment.