]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
docs: fix incorrect env var name for credentials directory
authorUriel Corfa <korfuri@gmail.com>
Sun, 28 Aug 2022 07:56:46 +0000 (09:56 +0200)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 28 Aug 2022 08:35:58 +0000 (17:35 +0900)
CREDENTIAL_PATH appears nowhere in the systemd source code.
$CREDENTIALS_DIRECTORY is what is used instead.

docs/CREDENTIALS.md

index f0d9865829f4b30c4e56739384d5c069d8e2a5c4..52741082f277d4aa95ea5efd8c00cb415f45702a 100644 (file)
@@ -128,7 +128,7 @@ Associated service shell script `/usr/bin/myservice.sh`:
 ```sh
 #!/bin/sh
 
-sha256sum $CREDENTIAL_PATH/foobar
+sha256sum $CREDENTIALS_DIRECTORY/foobar
 sha256sum $FOOBARPATH
 
 ```
@@ -145,7 +145,7 @@ In an ideal world, well-behaved service code would directly support credentials
 passed this way, i.e. look for `$CREDENTIALS_DIRECTORY` and load the credential
 data it needs from there. For daemons that do not support this but allow
 passing credentials via a path supplied over the command line use
-`${CREDENTIAL_PATH}` in the `ExecStart=` command line to reference the
+`${CREDENTIALS_DIRECTORY}` in the `ExecStart=` command line to reference the
 credentials directory. For daemons that allow passing credentials via a path
 supplied as environment variable, use the `%d` specifier in the `Environment=`
 setting to build valid paths to specific credentials.