From 9af630ee091277031f52e512b8dd11947df6621e Mon Sep 17 00:00:00 2001 From: yodax Date: Mon, 3 Oct 2016 11:03:05 +0200 Subject: [PATCH] Change status message when ufw is not working --- management/status_checks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/management/status_checks.py b/management/status_checks.py index 3923ee61..f138b5e9 100755 --- a/management/status_checks.py +++ b/management/status_checks.py @@ -173,8 +173,8 @@ def check_ufw(env, output): if code != 0: # The command failed, it's safe to say the firewall is disabled - output.print_warning("""The firewall is probably disabled on this machine. An error was received - while trying to check the firewall.""") + output.print_warning("""The firewall is not working on this machine. An error was received + while trying to check the firewall. To investigate run 'sudo ufw status'.""") return ufw = ufw.splitlines()