From 4a35c83631f6c634fb62f00a549df7a69fa4e107 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 25 Oct 2021 13:32:04 +0200 Subject: [PATCH] enable ufw --- tasks/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tasks/main.yml b/tasks/main.yml index 6c0225e..b259c5d 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -21,6 +21,10 @@ port: 60001:60099 proto: "udp" +- name: "Enable UFW" + ufw: + state: "enabled" + - name: "Lock root user" command: "passwd -l root"