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.
 
 
 
 
 
 

14 lines
259 B

---
- include: debian.yml
when: ansible_os_family == "Debian"
- include: centos.yml
when: ansible_os_family == "RedHat"
- name: copy compiled binary
when: not release_install|bool
copy:
src: "{{binary}}"
dest: /usr/local/bin
mode: 0755