blob: b7c405a8852c0a86c63049165bcacb90ab33a9f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
- name: enable pf
community.general.sysrc:
name: pf_enable
value: "YES"
notify: start pf
- name: enable pflog
community.general.sysrc:
name: pflog_enable
value: "YES"
notify: start pflog
- name: template pf.conf
template:
src: pf.conf.j2
dest: /etc/pf.conf
notify: reload pf
- meta: flush_handlers
|