Commit 0bd14cf4 authored by Simon Cornet's avatar Simon Cornet
Browse files

feat: install iptables and ip6tables on Alpine

parent fa218204
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
---
# Configure routing

- name: "install iptables"
  community.general.apk:
    name:
      - "iptables"
      - "ip6tables"
    state: "present"
    update_cache: true
  become: true