using System; namespace FastGithub.HttpServer { sealed class CaCertInstallerOfLinuxUbuntu : CaCertInstallerOfLinuxDebian { /// /// 是否支持 /// /// public override bool IsSupported() { return OperatingSystem.IsLinux() && IsReleasName("Ubuntu"); } } }