From 5f54b5d397863c41ea4c329988fb317ac830f95b Mon Sep 17 00:00:00 2001 From: Peter Janes Date: Fri, 17 Mar 2017 21:24:02 -0400 Subject: [PATCH] Explicitly install from git if not on Fedora or RedHat --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 193f9e4..d68f47b 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -3,7 +3,7 @@ when: not certbot_from_git and (ansible_distribution == 'Fedora' or ansible_distribution == 'RedHat') - include: install-from-git.yml - when: certbot_from_git or (ansible_distribution == 'Ubuntu') + when: certbot_from_git or (ansible_distribution != 'Fedora' and ansible_distribution != 'RedHat') - include: renew-cron.yml when: certbot_auto_renew