11 lines
245 B
YAML
11 lines
245 B
YAML
|
---
|
||
|
- name: Prepare
|
||
|
hosts: all
|
||
|
tasks:
|
||
|
- name: Ensure apt cache is updated and iptables is installed
|
||
|
ansible.builtin.apt:
|
||
|
name: iptables
|
||
|
state: present
|
||
|
update_cache: true
|
||
|
when: ansible_pkg_mgr == 'apt'
|