From 51b17411e83005262e6c735c1657fb3215dafe5a Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 1 Feb 2021 07:05:19 -0600 Subject: [PATCH] It would be hard to try multiple ways if any but the last failed. :P --- tasks/general/acct_mgmt/keys.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/general/acct_mgmt/keys.yml b/tasks/general/acct_mgmt/keys.yml index fbd5774..cddc3e7 100644 --- a/tasks/general/acct_mgmt/keys.yml +++ b/tasks/general/acct_mgmt/keys.yml @@ -9,18 +9,18 @@ - name: Create Root's SSH Key shell: ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa <<< n executable: /bin/bash - #ignore_errors: yes + ignore_errors: yes - name: Create Root's SSH Key shell: ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa stdin: "n" - #ignore_errors: yes + ignore_errors: yes - name: Create Root's SSH Key shell: ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa executable: /bin/bash stdin: "n" - #ignore_errors: yes + ignore_errors: yes - name: Join System to 1337 Share shell: ssh-copy-id -f -i /root/.ssh/id_rsa ling@leet \ No newline at end of file