Windows agent: Default to lower case FQDN

refs #7407
This commit is contained in:
Alexander A. Klimov 2020-11-02 14:08:56 +01:00
parent 9e5e162f78
commit 6cc3902575
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ namespace Icinga
if (props.DomainName != "")
fqdn += "." + props.DomainName;
return fqdn;
return fqdn.ToLower();
}
}