diff options
author | Uriel Corfa <korfuri@gmail.com> | 2022-08-28 09:56:46 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2022-08-28 10:35:58 +0200 |
commit | c0a18932dc487e863c9141f8b6a6a829f2f391c7 (patch) | |
tree | cae1de3b6364a2df4ea6ec9217c6755a6001689c /docs | |
parent | shell-completion: drop unused $mode (diff) | |
download | systemd-c0a18932dc487e863c9141f8b6a6a829f2f391c7.tar.xz systemd-c0a18932dc487e863c9141f8b6a6a829f2f391c7.zip |
docs: fix incorrect env var name for credentials directory
CREDENTIAL_PATH appears nowhere in the systemd source code.
$CREDENTIALS_DIRECTORY is what is used instead.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/CREDENTIALS.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/CREDENTIALS.md b/docs/CREDENTIALS.md index f0d9865829..52741082f2 100644 --- a/docs/CREDENTIALS.md +++ b/docs/CREDENTIALS.md @@ -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. |