diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-18 19:22:43 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-02-18 19:22:43 -0500 |
commit | 7a23bc9210c75a328877ec502c2c0f70816c9b6e (patch) | |
tree | 3b1ecc65b8404c452119acf8de3abedf943cedf2 /README.md | |
parent | df41270072cd8bc2ba997fb412ca94ac67811bb9 (diff) | |
download | stasis-7a23bc9210c75a328877ec502c2c0f70816c9b6e.tar.gz |
Remove examples from environment variables table. Too ugly.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -42,19 +42,19 @@ make install ## Environment variables -| Name | Purpose | Example | -|------------------------------|-------------------------------------------------------|-----------------------------------------------------------------------------| -| TMPDIR | Change default path to store temporary data | ```export TMPDIR=/new/tmp``` | -| OMC_SYSCONFDIR | Change default path to search for configuration files | ```export OMC_SYSCONFDIR=/my/shared/config/path``` | -| OMC_JF_ARTIFACTORY_URL | Artifactory service URL (ending in `/artifactory`) | ```export OMC_JF_ARTIFACTORY_URL=https://myserver.domain.tld/artifactory``` | -| OMC_JF_ACCESS_TOKEN | Artifactory Access Token | ```export OMC_JF_ACCESS_TOKEN=$(cat /token/file)``` | -| OMC_JF_USER | Artifactory username | ```export OMC_JF_USER=myusername``` | -| OMC_JF_PASSWORD | Artifactory password | ```export OMC_JF_PASSWORD=$(cat /my/password)``` | -| OMC_JF_SSH_KEY_PATH | Path to SSH public key file | ```export OMC_JF_SSH_KEY_PATH=~/.ssh/id_rsa_artifactory.pub``` | -| OMC_JF_SSH_PASSPHRASE | Password associated with SSH public key file | ```export OMC_JF_SSH_PASSPHRASE=$(cat /my/password)``` | -| OMC_JF_CLIENT_CERT_CERT_PATH | Path to OpenSSL cert files | ```export OMC_JF_CLIENT_CERT_PATH=/path/to/cert/dir``` | -| OMC_JF_CLIENT_CERT_KEY_PATH | OpenSSL key file (in cert path) | ```export OMC_JF_CLIENT_CERT_KEY_PATH=artifactory.pem``` | -| OMC_JF_REPO | Artifactory "generic" repository to write to | ```export OMC_JF_REPO=omc``` | +| Name | Purpose | +|------------------------------|-------------------------------------------------------| +| TMPDIR | Change default path to store temporary data | +| OMC_SYSCONFDIR | Change default path to search for configuration files | +| OMC_JF_ARTIFACTORY_URL | Artifactory service URL (ending in `/artifactory`) | +| OMC_JF_ACCESS_TOKEN | Artifactory Access Token | +| OMC_JF_USER | Artifactory username | +| OMC_JF_PASSWORD | Artifactory password | +| OMC_JF_SSH_KEY_PATH | Path to SSH public key file | +| OMC_JF_SSH_PASSPHRASE | Password associated with SSH public key file | +| OMC_JF_CLIENT_CERT_CERT_PATH | Path to OpenSSL cert files | +| OMC_JF_CLIENT_CERT_KEY_PATH | OpenSSL key file (in cert path) | +| OMC_JF_REPO | Artifactory "generic" repository to write to | # Variable expansion |