mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-12-16 09:41:03 +01:00
- introduces a variable certbot_from_git - adds install from package tasks - makes a variable called certbot_script available (to handle certbot vs certbot-auto naming) - fixes #18
16 lines
394 B
YAML
16 lines
394 B
YAML
---
|
|
# Where to get Certbot.
|
|
certbot_from_git: no
|
|
certbot_repo: https://github.com/certbot/certbot.git
|
|
certbot_version: master
|
|
certbot_keep_updated: yes
|
|
|
|
# Where to put Certbot when cloning from Git.
|
|
certbot_dir: /opt/certbot
|
|
|
|
# How to keep Certbot certs up to date.
|
|
certbot_auto_renew: true
|
|
certbot_auto_renew_user: "{{ ansible_user }}"
|
|
certbot_auto_renew_hour: 3
|
|
certbot_auto_renew_minute: 30
|