Files
acme-client/tasks/compile_acme.yml
2020-05-15 19:39:21 +02:00

17 lines
529 B
YAML

- name: download acme-portable
git:
repo: https://github.com/graywolf/acme-client-portable
dest: "{{src_dir}}/acme-client-portable"
version: HEAD # user newest master
notify: acme_autoreconf
- name: install build dependencies (debian)
apt:
name: "{{acme_build_dependencies_apt}}"
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
- name: install build dependencies (openSUSE)
apt:
name: "{{acme_build_dependencies_zypper}}"
when: ansible_distribution == 'openSUSE Leap'