From 78acf82bd5f19b2d317de2c27e9ea2b7cd0d5633 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Thu, 1 Dec 2016 13:50:01 +0100 Subject: manpage: change reg ID example to 123456. --- lacme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lacme.md') diff --git a/lacme.md b/lacme.md index b086fe7..41d6428 100644 --- a/lacme.md +++ b/lacme.md @@ -383,7 +383,7 @@ Examples ======== ~$ sudo lacme new-reg mailto:noreply@example.com - ~$ sudo lacme reg=/acme/reg/137760 --agreement-uri=https://letsencrypt.org/documents/LE-SA-v1.1.1-August-1-2016.pdf + ~$ sudo lacme reg=/acme/reg/123456 --agreement-uri=https://letsencrypt.org/documents/LE-SA-v1.1.1-August-1-2016.pdf ~$ sudo lacme new-cert ~$ sudo lacme revoke-cert /path/to/server/certificate.pem -- cgit v1.2.3 From 43670c2dc73148babfd8790070fc24982a71fd82 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Sat, 3 Dec 2016 16:22:03 +0100 Subject: Precise that --socket=PATH is ignored when the config file as an "accountd" section. --- lacme.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'lacme.md') diff --git a/lacme.md b/lacme.md index 41d6428..24973db 100644 --- a/lacme.md +++ b/lacme.md @@ -115,9 +115,13 @@ Generic options : Use *path* as the [`lacme-accountd`(1)] UNIX-domain socket to connect to for signature requests from the [ACME] client. `lacme` aborts if `path` is readable or writable by other users, or if its - parent directory is writable by other users. This overrides the - *socket* option of the [`[client]` section](#client-section) of the - configuration file. + parent directory is writable by other users. + This command-line option overrides the *socket* option of the + [`[client]` section](#client-section) of the configuration file. + Moreover this option is ignored when the configuration file has an + [`[accountd]` section](#accountd-section); in that case `lacme` + spawns [`lacme-accountd`(1)], and the two processes communicate + through a socket pair. `-h`, `--help` -- cgit v1.2.3 From bb5efce091215432fd2b82fbf50aff1536d415f6 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Mon, 5 Dec 2016 14:54:28 +0100 Subject: "config-certs" now points to a list of files or directories. --- lacme.md | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) (limited to 'lacme.md') diff --git a/lacme.md b/lacme.md index 24973db..69e3ce2 100644 --- a/lacme.md +++ b/lacme.md @@ -151,9 +151,18 @@ Default section *config-certs* : For certificate issuances (`new-cert` command), specify the - certificate configuration file to use (see the **[certificate - configuration file](#certificate-configuration-file)** section below - for the configuration options). + space-separated list of certificate configuration files or + directories to use (see the **[certificate configuration + file](#certificate-configuration-file)** section below for the + configuration options). + + Paths not starting with `/` are relative to the directory name of + the **[configuration filename](#configuration-file)**. The list of + files and directories is processed in order, with the later items + taking precedence. Files in a directory are processed in + lexicographic order, only considering the ones with suffix `.conf`. + + Default: `lacme-certs.conf lacme-certs.d/`. `[client]` section ------------------ @@ -303,12 +312,6 @@ Certificate configuration file For certificate issuances (`new-cert` command), a separate file is used to configure paths to the certificate and key, as well as the subject, subjectAltName, etc. to generate Certificate Signing Requests. -If `--config-certs=` is not given, and if the `config-certs` -configuration option is absent, then `lacme` uses the first existing -configuration file among *./lacme-certs.conf*, -*$XDG_CONFIG_HOME/lacme/lacme-certs.conf* (or -*~/.config/lacme/lacme-certs.conf* if the `XDG_CONFIG_HOME` environment -variable is not set), and */etc/lacme/lacme-certs.conf*. Each section denotes a separate certificate issuance. Valid options are: -- cgit v1.2.3 From 0eb9f40182299b2615f5ac0190d40429f5f64ed7 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Mon, 5 Dec 2016 16:45:27 +0100 Subject: s/lacme-certs.d/lacme-certs.conf.d/ --- lacme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lacme.md') diff --git a/lacme.md b/lacme.md index 69e3ce2..f5b5559 100644 --- a/lacme.md +++ b/lacme.md @@ -162,7 +162,7 @@ Default section taking precedence. Files in a directory are processed in lexicographic order, only considering the ones with suffix `.conf`. - Default: `lacme-certs.conf lacme-certs.d/`. + Default: `lacme-certs.conf lacme-certs.conf.d/`. `[client]` section ------------------ -- cgit v1.2.3