1234567891011121314151617181920 |
- using System;
- namespace FastGithub.HttpServer
- {
- class CaCertInstallerOfLinuxRedHat : CaCertInstallerOfLinux
- {
- public override string RootCertPath => "/etc/pki/ca-trust/source/anchors";
- public override string CertUpdateFileName => "update-ca-trust";
- /// <summary>
- /// 是否支持
- /// </summary>
- /// <returns></returns>
- public override bool IsSupported()
- {
- return OperatingSystem.IsLinux() && base.IsReleasName("Red Hat");
- }
- }
- }
|