16 lines
379 B
C#
16 lines
379 B
C#
using System;
|
|
|
|
namespace FastGithub.HttpServer
|
|
{
|
|
sealed class CaCertInstallerOfLinuxCentOS : CaCertInstallerOfLinuxRedHat
|
|
{
|
|
/// <summary>
|
|
/// 是否支持
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public override bool IsSupported()
|
|
{
|
|
return OperatingSystem.IsLinux() && IsReleasName("CentOS");
|
|
}
|
|
}
|
|
} |