15 lines
232 B
YAML
15 lines
232 B
YAML
|
---
|
||
|
- name: Install nftables
|
||
|
become: true
|
||
|
apt:
|
||
|
name: nftables
|
||
|
state: present
|
||
|
update_cache: yes
|
||
|
notify: Start nftables service
|
||
|
|
||
|
- name: Enable nftables
|
||
|
become: true
|
||
|
systemd:
|
||
|
name: nftables
|
||
|
enabled: true
|