CaCertInstallerOfLinuxRedHat.cs 453 B

12345678910111213141516
  1. using Microsoft.Extensions.Logging;
  2. namespace FastGithub.HttpServer
  3. {
  4. sealed class CaCertInstallerOfLinuxRedHat : CaCertInstallerOfLinux
  5. {
  6. protected override string CertToolName => "update-ca-trust";
  7. protected override string CertStorePath => "/etc/pki/ca-trust/source/anchors";
  8. public CaCertInstallerOfLinuxRedHat(ILogger<CaCertInstallerOfLinuxRedHat> logger)
  9. : base(logger)
  10. {
  11. }
  12. }
  13. }