Merge pull request #8431 from Icinga/feature/windows-lower-fqdn-7407

Windows agent: Default to lower case FQDN
This commit is contained in:
Julian Brost 2021-01-12 12:44:58 +01:00 committed by GitHub
commit 5f548c8f89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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