Repository URL to install this package:
|
Version:
1.0.0b1 ▾
|
---
- name: update the apt cache
apt: update_cache=yes cache_valid_time=7200
become: yes
- name: install certbot
apt: pkg={{item}} state=latest
with_items:
- certbot
become: yes
- name: change the path to letsencrypt
set_fact:
letsencrypt_path: "/usr/bin/letsencrypt"