feat: Move from Debian to Fedora #1

Open
pulsar wants to merge 1 commits from fedora into main
3 changed files with 5 additions and 6 deletions

View File

@@ -5,7 +5,7 @@
nftables_conf_template: nftables.conf.j2
# Default configuration path
nftables_conf_path: /etc/nftables.conf
nftables_conf_path: /etc/sysconfig/nftables.conf
# List of rules to deploy
nftables_rules: []

View File

@@ -8,8 +8,8 @@ galaxy_info:
min_ansible_version: '2.1'
platforms:
- name: Debian
- name: Fedora
versions:
- all
- "43"
dependencies: []

View File

@@ -2,7 +2,6 @@
# tasks file for nftables
- name: Install nftables
ansible.builtin.apt:
state: present
ansible.builtin.dnf:
name: nftables
when: ansible_facts['pkg_mgr'] == "apt"
become: true