Removed unnecessary warning from README

This commit is contained in:
Philip (a-0) 2022-07-13 13:06:37 +02:00
parent 67f9160189
commit 5b508f2f87

View file

@ -1,9 +1,6 @@
An ansible role to set up an ssh tunnel and port forwardings from the remote machine to local machines An ansible role to set up an ssh tunnel and port forwardings from the remote machine to local machines
# Caution # Required variables
Since the current debian version of sshd does not yet support dynamic configuration files (as in `/etc/ssh/sshd_config.d/*`), this role will **overwrite** your current sshd configuration! Normal ssh access on port 22 is still possible, but custom modifications will be lost on the remote machine.
# Variables you need to set
... e.g. in `group_vars` ... e.g. in `group_vars`
- `ssh_tunnel_pubkey`: The complete line to be used in `authorized_keys`, e.g. "ssh-ed25519 AAAA[...]aU root@mylocalmachine" - `ssh_tunnel_pubkey`: The complete line to be used in `authorized_keys`, e.g. "ssh-ed25519 AAAA[...]aU root@mylocalmachine"
- `ssh_tunnel_privkey`: The content of the corresponding private key file, including the BEGIN and END tags. It is highly recommended to put this inside an encrypted ansible vault. - `ssh_tunnel_privkey`: The content of the corresponding private key file, including the BEGIN and END tags. It is highly recommended to put this inside an encrypted ansible vault.