You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
340 B
Markdown
19 lines
340 B
Markdown
# HomeLab
|
|
|
|
An ansible specific private key is used in these playbooks.
|
|
|
|
This key can be generated by running
|
|
|
|
### Generate the keyfile
|
|
|
|
```bash
|
|
ssh-keygen -t ed25519 -C "ansible"
|
|
```
|
|
|
|
|
|
### Add to authorized host
|
|
```bash
|
|
# replace the user/hostname with whatever you need to connect to.
|
|
ssh-copy-id -i ~/.ssh/ansible.pub cianhatton@qnap
|
|
```
|