From cdae608e3c136c49989d3b002eb423f17f3934d9 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 10 Aug 2022 07:42:31 +0200 Subject: [PATCH] Mark some CVars as CONFIDENTIAL. (#10468) Co-authored-by: metalgearsloth --- Content.Shared/CCVar/CCVars.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 6487a16c13..cab642274a 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -90,7 +90,7 @@ namespace Content.Shared.CCVar CVarDef.Create("status.mommiurl", "", CVar.SERVERONLY); public static readonly CVarDef StatusMoMMIPassword = - CVarDef.Create("status.mommipassword", "", CVar.SERVERONLY); + CVarDef.Create("status.mommipassword", "", CVar.SERVERONLY | CVar.CONFIDENTIAL); /* @@ -386,7 +386,7 @@ namespace Content.Shared.CCVar CVarDef.Create("database.pg_username", "", CVar.SERVERONLY); public static readonly CVarDef DatabasePgPassword = - CVarDef.Create("database.pg_password", "", CVar.SERVERONLY); + CVarDef.Create("database.pg_password", "", CVar.SERVERONLY | CVar.CONFIDENTIAL); // Basically only exists for integration tests to avoid race conditions. public static readonly CVarDef DatabaseSynchronous =