From 750466839f402a356d09ee45ed39caebdabb6c10 Mon Sep 17 00:00:00 2001 From: Greelan <53196309+Greelan@users.noreply.github.com> Date: Fri, 28 Jul 2023 11:15:38 +1000 Subject: [PATCH] Arma Reforger: fix default passwordAdmin length and remove LinuxBufferedConsole (#434) --- arma-reforger.kvp | 2 +- arma-reforgerconfig.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arma-reforger.kvp b/arma-reforger.kvp index 9498d7e..a8879ba 100644 --- a/arma-reforger.kvp +++ b/arma-reforger.kvp @@ -60,7 +60,7 @@ App.RCONHeartbeatCommand=ping App.TelnetLoginFormat={0} App.UpdateSources=@IncludeJson[arma-reforgerupdates.json] App.PreStartStages=[] -App.Compatibility=LinuxBufferedConsole, WindowsBufferedConsole +App.Compatibility=WindowsBufferedConsole App.SteamUpdateAnonymousLogin=True App.SteamForceLoginPrompt=False App.RapidStartup=False diff --git a/arma-reforgerconfig.json b/arma-reforgerconfig.json index d3932e7..aab76e1 100644 --- a/arma-reforgerconfig.json +++ b/arma-reforgerconfig.json @@ -188,14 +188,14 @@ { "DisplayName":"Admin Password", "Category":"Server Settings", - "Description":"Sets the password required for admin access to the server. Only use alphanumeric, dash or underscore characters. Default is a strong random password", + "Description":"Sets the password required for admin access to the server. Only use alphanumeric, dash or underscore characters. Maximum 32 characters. Default is a strong random password", "Keywords":"admin,password,adminpassword,passwordadmin", "FieldName":"adminPassword", "InputType":"password", "IsFlagArgument":false, "ParamFieldName":"game.passwordAdmin", "IncludeInCommandLine":false, - "DefaultValue":"{{newguid()}}", + "DefaultValue":"{{randomdigits(15)}}", "EnumValues":{} }, { @@ -491,4 +491,4 @@ "Placeholder":"-debug", "EnumValues":{} } -] \ No newline at end of file +]