initial commit
This commit is contained in:
16
tasks/compile_acme.yml
Normal file
16
tasks/compile_acme.yml
Normal 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'
|
||||
Reference in New Issue
Block a user