From df2d340c4f6a559a1ec28506bbc98582f25ac6c5 Mon Sep 17 00:00:00 2001 From: Janne Saarinen <50728680+jannesaarinen@users.noreply.github.com> Date: Sun, 10 Mar 2024 00:14:43 +0200 Subject: [PATCH] Update readme.md Fixed type on the Create SSH key command --- Ansible/SSH/readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ansible/SSH/readme.md b/Ansible/SSH/readme.md index 22d6725..5130195 100644 --- a/Ansible/SSH/readme.md +++ b/Ansible/SSH/readme.md @@ -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 -``` \ No newline at end of file +```