diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-09-08 13:11:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-08 13:11:44 +0200 |
commit | 52f64090f55eaffc1d869e1603bf42b84e2c1c24 (patch) | |
tree | 81d91919edd8c8073217c878cf52ce3d29d1cfab /docs/configuration | |
parent | 427bdf04c10811a4098f35c94cf6b3caa847e02c (diff) | |
download | vyos-documentation-52f64090f55eaffc1d869e1603bf42b84e2c1c24.tar.gz vyos-documentation-52f64090f55eaffc1d869e1603bf42b84e2c1c24.zip |
pki: remove invalid character from shell command
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/pki/index.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/configuration/pki/index.rst b/docs/configuration/pki/index.rst index a10124c1..cd47e43f 100644 --- a/docs/configuration/pki/index.rst +++ b/docs/configuration/pki/index.rst @@ -178,7 +178,7 @@ CA (Certificate Authority) Also, the certificate/key needs to be presented in a single line without line breaks (``\n``), this can be done using the following shell command: - ``$ tail -n +2 ca.pem | head -n -1 | tr -d '\n'H`` + ``$ tail -n +2 ca.pem | head -n -1 | tr -d '\n'`` .. cfgcmd:: set pki ca <name> crl @@ -199,7 +199,7 @@ CA (Certificate Authority) certificate/key needs to be presented in a single line without line breaks (``\n``), this can be done using the following shell command: - ``$ tail -n +2 ca.key | head -n -1 | tr -d '\n'H`` + ``$ tail -n +2 ca.key | head -n -1 | tr -d '\n'`` .. cfgcmd:: set pki ca <name> private password-protected @@ -221,7 +221,7 @@ certificates used by services on this router. Also, the certificate/key needs to be presented in a single line without line breaks (``\n``), this can be done using the following shell command: - ``$ tail -n +2 cert.pem | head -n -1 | tr -d '\n'H`` + ``$ tail -n +2 cert.pem | head -n -1 | tr -d '\n'`` .. cfgcmd:: set pki certificate <name> description @@ -237,7 +237,7 @@ certificates used by services on this router. certificate/key needs to be presented in a single line without line breaks (``\n``), this can be done using the following shell command: - ``$ tail -n +2 cert.key | head -n -1 | tr -d '\n'H`` + ``$ tail -n +2 cert.key | head -n -1 | tr -d '\n'`` .. cfgcmd:: set pki certificate <name> private password-protected |