initial commit

This commit is contained in:
2020-05-15 19:39:21 +02:00
commit e960091c93
7 changed files with 224 additions and 0 deletions

16
tasks/compile_acme.yml Normal file
View File

@@ -0,0 +1,16 @@
- 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'