aboutsummaryrefslogtreecommitdiffstats
path: root/tasks/network.yml
diff options
context:
space:
mode:
Diffstat (limited to 'tasks/network.yml')
-rw-r--r--tasks/network.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/tasks/network.yml b/tasks/network.yml
index 3b95380..5f60d05 100644
--- a/tasks/network.yml
+++ b/tasks/network.yml
@@ -42,28 +42,8 @@
name: syslogd
state: started
register: started_syslogd
-
#- name: Restart syslogd
# service:
# name: syslogd
# state: restarted
# when: not started_syslogd.changed and rc_conf.changed
-
-- name: Configure pf
- template:
- src: etc_pf.conf.j2
- dest: /etc/pf.conf
- owner: root
- group: wheel
- mode: "0644"
- backup: yes
- register: pf_conf
-
-- name: Start pf
- service:
- name: pf
- state: started
-
-- name: Reload pf rules
- shell: pfctl -f /etc/pf.conf
- when: pf_conf.changed