You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
417 B
18 lines
417 B
8 years ago
|
---
|
||
|
- name: Clone Certbot into configured directory.
|
||
|
git:
|
||
|
repo: "{{ certbot_repo }}"
|
||
|
dest: "{{ certbot_dir }}"
|
||
|
version: "{{ certbot_version }}"
|
||
|
update: "{{ certbot_keep_updated }}"
|
||
|
force: yes
|
||
|
|
||
8 years ago
|
- name: Set Certbot script variable.
|
||
8 years ago
|
set_fact:
|
||
|
certbot_script: "{{ certbot_dir }}/certbot-auto"
|
||
|
|
||
8 years ago
|
- name: Ensure certbot-auto is executable.
|
||
|
file:
|
||
8 years ago
|
path: "{{ certbot_script }}"
|
||
8 years ago
|
mode: 0755
|