From 58d8b79b0b4c40c68abb5b6c6ea2aca67cf2ce87 Mon Sep 17 00:00:00 2001 From: Santiago Torres Date: Fri, 22 May 2020 17:34:06 -0400 Subject: [PATCH] settings.py Add netboot banner default value The NETBOOT_SECURITY_BANNER was missing on the settings.py module (it was only included on the example file). Set it on settings.py as well so it is used by default. --- settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/settings.py b/settings.py index b2b3db2f..14d174ef 100644 --- a/settings.py +++ b/settings.py @@ -225,4 +225,7 @@ INSTALLED_APPS = list(INSTALLED_APPS) + ['debug_toolbar'] +## Display a warning if serving netboot images on downgraded ciphers +NETBOOT_SECURITY_BANNER=True + # vim: set ts=4 sw=4 et: