forked from ISTI-ansible-roles/ansible-roles
11 lines
219 B
YAML
11 lines
219 B
YAML
|
---
|
||
|
- hosts: all
|
||
|
remote_user: root
|
||
|
gather_facts: False
|
||
|
vars_files:
|
||
|
- ../vars/isti-global.yml
|
||
|
tasks:
|
||
|
- name: Start the iptables firewall
|
||
|
service: name=iptables-persistent state=restarted enabled=yes
|
||
|
|