12 lines
410 B
YAML
12 lines
410 B
YAML
# SPDX-License-Identifier: MIT
|
|
- name: 'Create dir for ACME helper scripts Git repo'
|
|
ansible.builtin.file:
|
|
path: '/opt/git/quico.space/Quico/acme-deploy-helpers/branches/main'
|
|
state: 'directory'
|
|
|
|
|
|
- name: 'Git clone ACME helper scripts repo'
|
|
ansible.builtin.git:
|
|
repo: 'https://quico.space/Quico/acme-deploy-helpers.git'
|
|
dest: '/opt/git/quico.space/Quico/acme-deploy-helpers/branches/main'
|