Skip to content

Commit

Permalink
Fixing up some metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
ebekker committed Aug 8, 2017
1 parent f2ecb82 commit 4a96e08
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ACMESharp/ACMESharp.Providers.IIS/IisInstallerProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,22 @@ public class IisInstallerProvider : IInstallerProvider

public static readonly ParameterDetail BINDING_PORT = new ParameterDetail(
nameof(IisInstaller.BindingPort),
ParameterType.NUMBER, label: "Web Site Ref",
ParameterType.NUMBER, label: "Binding Port",
desc: "An optional port to bind to; defaults to HTTPS port (443)");

public static readonly ParameterDetail BINDING_HOST = new ParameterDetail(
nameof(IisInstaller.BindingHost),
ParameterType.TEXT, label: "Web Site Ref",
ParameterType.TEXT, label: "Binding Host",
desc: "An optional host name to bind to using SNI (IIS8+)");

public static readonly ParameterDetail BINDING_HOST_REQUIRED = new ParameterDetail(
nameof(IisInstaller.BindingHostRequired),
ParameterType.BOOLEAN, label: "Web Site Ref",
ParameterType.BOOLEAN, label: "Binding Host Required",
desc: "An optional flag to indicate SNI is required (IIS8+)");

public static readonly ParameterDetail FORCE = new ParameterDetail(
nameof(IisInstaller.Force),
ParameterType.BOOLEAN, label: "Web Site Ref",
ParameterType.BOOLEAN, label: "Force",
desc: "An optional flag to overwrite an existing binding matching the target criteria");

public static readonly ParameterDetail CERTIFICATE_FRIENDLY_NAME = new ParameterDetail(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public bool IsDisposed

public void CleanUp(Challenge c)
{
throw new NotSupportedException("provider does not support clean up");
}

public void Dispose()
Expand Down

0 comments on commit 4a96e08

Please sign in to comment.