修复路径

This commit is contained in:
老九 2021-11-13 14:25:26 +08:00
parent b6dd7a6c5e
commit 5e8f920ada
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ namespace FastGithub.HttpServer
{
sealed class CaCertInstallerOfLinuxDebian : CaCertInstallerOfLinux
{
protected override string CaCertUpdatePath => "/bin/update-ca-certificates";
protected override string CaCertUpdatePath => "/usr/sbin/update-ca-certificates";
protected override string CaCertStorePath => "/usr/local/share/ca-certificates";

View File

@ -4,7 +4,7 @@ namespace FastGithub.HttpServer
{
sealed class CaCertInstallerOfLinuxRedHat : CaCertInstallerOfLinux
{
protected override string CaCertUpdatePath => "/bin/update-ca-trust";
protected override string CaCertUpdatePath => "/usr/bin/update-ca-trust";
protected override string CaCertStorePath => "/etc/pki/ca-trust/source/anchors";