Merge pull request #70 from jannesaarinen/main

fix:e ansible/ssh/readme.md (typo in a command)
This commit is contained in:
tehNooB 2024-03-09 23:49:17 +00:00 committed by GitHub
commit 3ed816339d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,7 +14,7 @@ ansible all -m ping
# Create SSH Key
```
ssh keygen -t ed25519 -C "ansible"
ssh-keygen -t ed25519 -C "ansible"
```
# Copy SSH Key
@ -25,4 +25,4 @@ ssh-copy-id -i ~/.ssh/ansible.pub 192.168.200.50
# Ansible Ping Command With New SSH Key
```
ansible all -m ping --key-file ~/.ssh/ansible
```
```