summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorAlberto Sartori <alberto.sartori@huawei.com>2023-01-05 16:35:33 +0100
committerAlberto Sartori <alberto.sartori@huawei.com>2023-01-18 15:52:03 +0100
commit4ae1447b3d821bfb77bedcf67422369ae59c74dd (patch)
tree2cfeafce95db3134fea5a9be67657c0f987f699f /share
parent24e7398e225fc288d0a299fc6cd77fcf1539835c (diff)
downloadjustbuild-4ae1447b3d821bfb77bedcf67422369ae59c74dd.tar.gz
authentication: add TLS and mTLS support
Diffstat (limited to 'share')
-rw-r--r--share/man/just.1.org24
1 files changed, 21 insertions, 3 deletions
diff --git a/share/man/just.1.org b/share/man/just.1.org
index 6ca71764..c79c73e1 100644
--- a/share/man/just.1.org
+++ b/share/man/just.1.org
@@ -406,8 +406,8 @@ well-defined graph file. See *just-graph-file(5)* for more details.
Number of jobs to run. Default: Number of cores.\\
Supported by: analyse|build|describe|install|rebuild|traverse.
-
** Remote execution options
+
As remote execution properties shard the target-level cache, they are also
available for analysis. In this way, the same action identifiers can be
achieved despite the extensional projection inherent to target level caching,
@@ -417,12 +417,30 @@ well-defined graph file. See *just-graph-file(5)* for more details.
Property for remote execution as key-value pair. Specifying this
option multiple times will accumulate pairs. If multiple pairs with
the same key are given, the latest wins.\\
- Supported by: analysis|build|install|rebuild|traverse.
+ Supported by: analyse|build|install|rebuild|traverse.
*-r*, *--remote-execution-address* NAME:PORT\\
Address of the remote execution service.\\
- Supported by: analysis|build|install-cas|install|rebuild|traverse.
+ Supported by: analyse|build|install-cas|install|rebuild|traverse.
+
+** Authentication options
+
+ Only TLS and mutual TLS (mTLS) are supported.
+ *--tls-ca-cert* PATH\\
+ Path to a TLS CA certificate that is trusted to sign the server
+ certificate.
+ Supported by: build|install-cas|install|rebuild|traverse.
+
+ *--tls-client-cert* PATH\\
+ Path to a TLS client certificate to enable mTLS. It must be passed
+ in conjunction with *--tls-client-key* and *--tls-ca-cert*.
+ Supported by: build|install-cas|install|rebuild|traverse.
+
+ *--tls-client-key* PATH\\
+ Path to a TLS client key to enable mTLS. It must be passed in
+ conjunction with *--tls-client-cert* and *--tls-ca-cert*.
+ Supported by: build|install-cas|install|rebuild|traverse.
** *analyse* specific options