From 9f69fcf4c13ed659fc30650744762d291d2d63e5 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Mon, 1 Feb 2021 07:16:17 -0600 Subject: [PATCH] Add args on tests. --- tasks/general/acct_mgmt/keys.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tasks/general/acct_mgmt/keys.yml b/tasks/general/acct_mgmt/keys.yml index cddc3e7..69b33d4 100644 --- a/tasks/general/acct_mgmt/keys.yml +++ b/tasks/general/acct_mgmt/keys.yml @@ -8,16 +8,19 @@ - name: Create Root's SSH Key shell: ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa <<< n + args: executable: /bin/bash ignore_errors: yes - name: Create Root's SSH Key shell: ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa + args: stdin: "n" ignore_errors: yes - name: Create Root's SSH Key shell: ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa + args: executable: /bin/bash stdin: "n" ignore_errors: yes