forked from ISTI-ansible-roles/ansible-roles
9 lines
258 B
YAML
9 lines
258 B
YAML
|
---
|
||
|
- name: Initialize letsencrypt acmetool
|
||
|
become: True
|
||
|
become_user: '{{ letsencrypt_acme_user }}'
|
||
|
command: '/usr/local/bin/acme-cert-request > {{ letsencrypt_acme_log_dir }}/acme-cron.log 2>&1'
|
||
|
when: letsencrypt_acme_install
|
||
|
ignore_errors: True
|
||
|
|