From 3493be85fc0bcc587500f0b32258bae35ff0f4be Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Tue, 11 May 2021 18:19:05 +0200 Subject: [PATCH] Do not fail when removing the PPA. --- tasks/apache-ppa.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/apache-ppa.yml b/tasks/apache-ppa.yml index 33a1099..dd97599 100644 --- a/tasks/apache-ppa.yml +++ b/tasks/apache-ppa.yml @@ -9,6 +9,7 @@ - block: - name: Remove the Ubuntu apache PPA apt_repository: repo='{{ apache_ppa_repo }}' update_cache=yes state=absent + ignore_errors: True when: not apache_from_ppa tags: [ 'apache', 'apache_ppa' ]