aboutsummaryrefslogtreecommitdiffstats
path: root/roles/pf/tasks/main.yml
blob: 7916c69d246660c8db526f537659a4e5341ab068 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

# pf ~~ tasks/main.yml

---

- name: Generate and sync configuration
  template:
    src: templates/pf.conf.j2
    dest: /etc/pf.conf
    owner: root
    group: "{{ group.root }}"
    mode: "0600"

- name: Restart pf
  shell: /sbin/pfctl -f /etc/pf.conf
remember that computers suck.