From c98e912fc55b7a250c440df2a18a6701976f0280 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Fri, 10 Nov 2023 14:35:44 +0100 Subject: [PATCH] add description for 'disable_otp_security_check' flag in config.example.inc.php Signed-off-by: Michael Kaufmann --- lib/config.example.inc.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/config.example.inc.php b/lib/config.example.inc.php index cdec9462..7ca6b26b 100644 --- a/lib/config.example.inc.php +++ b/lib/config.example.inc.php @@ -9,11 +9,18 @@ return [ * recommended value for debian/ubuntu package users is false to rely on apt and not have version mixup. * This is also useful for providers that manage the servers but give admin access to froxlor to handle * updates the way the providers does it (e.g. automation, etc.) + * + * Default: false */ 'enable_webupdate' => false, /** - * @todo description + * settings that have a major impact on the system or which values are used to be executed with high + * privileges on the system require the admin-user to have set up and enabled OTP for the corresponding + * account to change these values. + * To disable this extra security validation, set the value of this to true + * + * Default: false */ 'disable_otp_security_check' => false, ];