From 60caf4b4bf83495926506483d7e7fe8a5e18b274 Mon Sep 17 00:00:00 2001 From: Philipp Storz Date: Fri, 15 May 2020 11:55:31 +0200 Subject: [PATCH] docs: encryption: use same name for example certificate. The name used in the documentation how to create the certificates was "fd-example", while the example configuration file used "client1-fd". Now both use "example-fd", as the filedaemons usually are called "-fd" everywhere. --- docs/manuals/source/TasksAndConcepts/DataEncryption.rst | 6 +++--- docs/manuals/source/include/config/FdClientPki.conf | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/manuals/source/TasksAndConcepts/DataEncryption.rst b/docs/manuals/source/TasksAndConcepts/DataEncryption.rst index 17021957af5..a557d220e78 100644 --- a/docs/manuals/source/TasksAndConcepts/DataEncryption.rst +++ b/docs/manuals/source/TasksAndConcepts/DataEncryption.rst @@ -88,9 +88,9 @@ Generate a File Daemon Key Pair for each FD: :: - openssl genrsa -out fd-example.key 2048 - openssl req -new -key fd-example.key -x509 -out fd-example.cert - cat fd-example.key fd-example.cert >fd-example.pem + openssl genrsa -out example-fd.key 2048 + openssl req -new -key example-fd.key -x509 -out example-fd.cert + cat example-fd.key example-fd.cert >example-fd.pem diff --git a/docs/manuals/source/include/config/FdClientPki.conf b/docs/manuals/source/include/config/FdClientPki.conf index 01108df15d0..49a601150e7 100644 --- a/docs/manuals/source/include/config/FdClientPki.conf +++ b/docs/manuals/source/include/config/FdClientPki.conf @@ -4,7 +4,7 @@ FileDaemon { # encryption configuration PKI Signatures = Yes # Enable Data Signing PKI Encryption = Yes # Enable Data Encryption - PKI Keypair = "/etc/bareos/client1-fd.pem" # Public and Private Keys + PKI Keypair = "/etc/bareos/example-fd.pem" # Public and Private Keys PKI Master Key = "/etc/bareos/master.cert" # ONLY the Public Key PKI Cipher = aes128 # specify desired PKI Cipher here }