netz39-infra-ansible/roles/dehydrated/tasks/main.yml

38 lines
864 B
YAML
Raw Normal View History

2021-02-01 20:24:38 +01:00
---
- name: Gather package facts.
package_facts:
manager: "auto"
- name: Clone dehydrated repo.
2021-02-07 21:13:00 +01:00
git:
repo: 'https://github.com/dehydrated-io/dehydrated.git'
2021-02-01 20:24:38 +01:00
dest: "{{ dehydrated_location }}"
version: "{{ dehydrated_version }}"
- name: Ensure dehydrated symlink is present.
2021-02-07 21:13:00 +01:00
file:
2021-02-01 20:24:38 +01:00
src: "{{ dehydrated_location }}/dehydrated"
2021-02-07 21:10:45 +01:00
dest: "{{ dehydrated_binary }}"
2021-02-01 20:24:38 +01:00
state: link
- name: Ensure config directory is present.
2021-02-07 21:13:00 +01:00
file:
path: "{{ dehydrated_config }}"
state: directory
2021-02-01 20:24:38 +01:00
- name: Ensure domains.txt is present.
2021-02-07 21:13:00 +01:00
file:
path: "{{ dehydrated_config }}/domains.txt"
state: touch
2021-02-01 20:24:38 +01:00
- name: Ensure config is present.
2021-02-07 21:13:00 +01:00
template:
src: config.j2
2021-02-01 20:24:38 +01:00
dest: "{{ dehydrated_config }}/config"
2021-02-07 12:58:06 +01:00
notify: dehydrated register
2021-02-01 20:57:41 +01:00
- name: Create wellknown directory.
file:
state: directory
path: /var/www/letsencrypt