From 8678290e6bb6d5a4c725f2f9c805057ca2f65d06 Mon Sep 17 00:00:00 2001 From: David Lopez Date: Thu, 27 Jul 2023 09:09:05 +0000 Subject: [PATCH] Update create_user_ssh/check_authorizzed_key.yml --- create_user_ssh/check_authorizzed_key.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/create_user_ssh/check_authorizzed_key.yml b/create_user_ssh/check_authorizzed_key.yml index f950608..3bd019b 100644 --- a/create_user_ssh/check_authorizzed_key.yml +++ b/create_user_ssh/check_authorizzed_key.yml @@ -23,4 +23,10 @@ user: root # Replace with the remote user's name state: present key: "{{ key_to_add }}" - when: authorized_key_exists | default(false) | not \ No newline at end of file + + rescue: + - name: Handle error when key already exists + debug: + msg: "The authorized key already exists. Skipping addition." + + when: not authorized_key_exists | default(false) \ No newline at end of file