~craftyguy/ansible-nftables

11ddb4b68ac92bcd69980f85b87dd148f7ff82b8 — Clayton Craft 2 years ago a523033
Simplify the task for installing nftables
2 files changed, 4 insertions(+), 6 deletions(-)

M README.md
M tasks/02-configure-system.yml
M README.md => README.md +1 -0
@@ 3,6 3,7 @@
With the following changes/fixes:

- Add support for Alpine Linux
- Simply nftables install task


[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-green.svg)](https://conventionalcommits.org)

M tasks/02-configure-system.yml => tasks/02-configure-system.yml +3 -6
@@ 1,12 1,9 @@
---
- name: Installing required packages
  become: yes
  package:
    name: [
      nftables,
    ]
    state: present
    update_cache: yes
  ansible.builtin.package:
    name:
      - nftables
  notify:
    - "Restarting firewall rules"