From: Uriel Corfa Date: Sun, 28 Aug 2022 07:56:46 +0000 (+0200) Subject: docs: fix incorrect env var name for credentials directory X-Git-Tag: v252-rc1~311 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0a18932dc487e863c9141f8b6a6a829f2f391c7;p=thirdparty%2Fsystemd.git 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. --- diff --git a/docs/CREDENTIALS.md b/docs/CREDENTIALS.md index f0d9865829f..52741082f27 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.