From ee58d205a56da0ac559c226c16ce40dcca4f0348 Mon Sep 17 00:00:00 2001 From: xenolf Date: Sun, 1 Nov 2015 00:29:01 +0100 Subject: [PATCH] Remove unused CLI option --- README.md | 5 ++--- cli.go | 7 ------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e6d67c9f..9bbe2b4e 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,6 @@ VERSION: COMMANDS: run Register an account, then create and install a certificate - auth Create a certificate - must already have an account revoke Revoke a certificate renew Renew a certificate help, h Shows a list of commands or help for one command @@ -59,11 +58,11 @@ GLOBAL OPTIONS: --server, -s "https://acme-staging.api.letsencrypt.org/" CA hostname (and optionally :port). The server certificate must be trusted in order to avoid further modifications to the client. --email, -m Email used for registration and recovery contact. --rsa-key-size, -B "2048" Size of the RSA key. - --path "CWD" Directory to use for storing the data + --path "CWD/.lego" Directory to use for storing the data --port Challenges will use this port to listen on. Please make sure to forward port 443 to this port on your machine. Otherwise use setcap on the binary - --devMode If set to true, all client side challenge pre-tests are skipped. --help, -h show help --version, -v print the version + ``` diff --git a/cli.go b/cli.go index e4ab6923..d2de1d74 100644 --- a/cli.go +++ b/cli.go @@ -38,13 +38,6 @@ func main() { Usage: "Register an account, then create and install a certificate", Action: run, }, - { - Name: "auth", - Usage: "Create a certificate - must already have an account", - Action: func(c *cli.Context) { - logger().Fatal("Not implemented") - }, - }, { Name: "revoke", Usage: "Revoke a certificate",