forked from Netz39_Admin/netz39-infra-ansible
remaining tasks
This commit is contained in:
parent
a8bae49e0d
commit
af11dfd513
1 changed files with 15 additions and 0 deletions
|
@ -20,8 +20,23 @@
|
|||
ansible.builtin.template:
|
||||
src: /templates/domains.txt.j2
|
||||
dest: "{{ dehydrated_config }}/domains.txt"
|
||||
register: dehydomains
|
||||
|
||||
- name: Ensure config is present.
|
||||
ansible.builtin.template:
|
||||
src: /templates/config.j2
|
||||
dest: "{{ dehydrated_config }}/config"
|
||||
register: dehyconfig
|
||||
|
||||
- name: Create wellknown directory.
|
||||
file:
|
||||
state: directory
|
||||
path: /var/www/letsencrypt
|
||||
|
||||
- name: Register account.
|
||||
command: "{{ dehydrated_path }} --register --accept-terms"
|
||||
when: dehyconfig.changed
|
||||
|
||||
- name: Initial dehydrated run.
|
||||
command: "{{ dehydrated_path }} --cron"
|
||||
when: dehyconfig.changed or dehydomains.changed
|
||||
|
|
Loading…
Reference in a new issue