Changeset - 1e913ad42420
[Not reviewed]
0 2 0
Branko Majic (branko) - 6 years ago 2018-08-19 13:24:22
branko@majic.rs
MAR-132: Update documentation for backup_server role:

- Mention that DSA key is required only on Debian Jessie.
- Remove unused parameter from role defaults.
2 files changed with 10 insertions and 9 deletions:
0 comments (0 inline, 0 general)
docs/rolereference.rst
Show inline comments
 
@@ -2115,10 +2115,16 @@ Parameters
 

	
 
**backup_host_ssh_private_keys** (dictionary, mandatory)
 
  Defines host keys used for the dedicated OpenSSH server instance for
 
  backup. Key values that must be provided are: **dsa**, **rsa**, **ed25519**,
 
  and **ecdsa**, with values for each one of them corresponding to a private key
 
  generated using the appropriate algorithm. Keys for this purpose can be easily
 
  created via commands::
 
  backup. Key values that must be provided are:
 

	
 
  - **dsa** (only on Debian Jessie)
 
  - **rsa**
 
  - **ed25519**
 
  - **ecdsa**
 

	
 
  Values for each key should be the corresponding private key
 
  generated using the appropriate algorithm. Keys for this purpose can
 
  be easily created via commands::
 

	
 
    ssh-keygen -f backup_server_dsa_key -N '' -t dsa
 
    ssh-keygen -f backup_server_rsa_key -N '' -t rsa
roles/backup_server/defaults/main.yml
Show inline comments
 
---
 

	
 
backup_clients: []
 
backup_host_ssh_keys:
 
  dsa: "{{ ssh_key_dir }}/{{ ansible_fqdn }}_dsa_key"
 
  rsa: "{{ ssh_key_dir }}/{{ ansible_fqdn }}_rsa_key"
 
  ed25519: "{{ ssh_key_dir }}/{{ ansible_fqdn }}_ed25519_key"
 
  ecdsa: "{{ ssh_key_dir }}/{{ ansible_fqdn }}_ecdsa_key"
0 comments (0 inline, 0 general)