summaryrefslogtreecommitdiff
path: root/ansible/nftables.yml
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2019-01-06 15:43:45 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2019-01-06 15:43:45 +0100
commit67e8a83408c0e5b03ca4f8189f00092cb63b65d5 (patch)
treee4982c56707b812760301af94c7d0d12ec7a56ac /ansible/nftables.yml
parent3572c448f189d451dab80933fc4f78980999acd6 (diff)
downloadinfra-67e8a83408c0e5b03ca4f8189f00092cb63b65d5.tar.gz
infra-67e8a83408c0e5b03ca4f8189f00092cb63b65d5.tar.bz2
infra-67e8a83408c0e5b03ca4f8189f00092cb63b65d5.tar.xz
infra-67e8a83408c0e5b03ca4f8189f00092cb63b65d5.zip
o Switching arius from UFW to nftables.
Diffstat (limited to 'ansible/nftables.yml')
-rw-r--r--ansible/nftables.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/ansible/nftables.yml b/ansible/nftables.yml
new file mode 100644
index 0000000..72f98df
--- /dev/null
+++ b/ansible/nftables.yml
@@ -0,0 +1,15 @@
+- hosts:
+ - arius
+ tasks:
+ - name: Remove UFW
+ become: yes
+ apt:
+ name: ufw
+ state: absent
+ purge: yes
+
+- hosts:
+ - arius
+ roles:
+ - role: nftables
+ become: yes