summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantiago Torres <santiago@archlinux.org>2020-05-22 17:34:06 -0400
committerJelle van der Waa <jelle@archlinux.org>2020-08-03 21:38:12 +0200
commit58d8b79b0b4c40c68abb5b6c6ea2aca67cf2ce87 (patch)
tree86c13509b7eceb3d1eb0f166b002f1e6d24b5dfd
parent8b2f897702d6e3713c99f3266ac7c055d6ae6526 (diff)
downloadarchweb-58d8b79b0b4c40c68abb5b6c6ea2aca67cf2ce87.tar.gz
archweb-58d8b79b0b4c40c68abb5b6c6ea2aca67cf2ce87.zip
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.
-rw-r--r--settings.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/settings.py b/settings.py
index b2b3db2f..14d174ef 100644
--- a/settings.py
+++ b/settings.py
@@ -225,4 +225,7 @@ if DEBUG_TOOLBAR:
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: