Support Ubuntu 16.04 out of the box

pull/19/head
Oskar Schöldström 8 years ago committed by Jannik V
parent 92ef96faff
commit e82a68e331
  1. 14
      tasks/install-with-package.yml

@ -1,7 +1,17 @@
---
- name: Define certbot_package (Ubuntu 16.04).
set_fact:
certbot_package: letsencrypt
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '16.04'
- name: Define certbot_package.
set_fact:
certbot_package: certbot
when: certbot_package is undefined
- name: Install Certbot.
package: name=certbot state=present
package: "name={{ certbot_package }} state=present"
- name: Set Certbot script variable.
set_fact:
certbot_script: certbot
certbot_script: "{{ certbot_package }}"

Loading…
Cancel
Save