Ansible role to manage ACME certificates
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.
|
- name: Prepare
|
|
hosts: all
|
|
gather_facts: no
|
|
|
|
tasks:
|
|
- name: Update APT cache
|
|
raw: apt update
|
|
|
|
- name: Install Python3 package
|
|
raw: apt install -y --no-install-recommends python3
|
|
|
|
- name: Install cron package
|
|
package:
|
|
name: cron
|
|
state: present |