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

  1. ---
  2. - include: debian.yml
  3. when: ansible_os_family == "Debian"
  4. - include: centos.yml
  5. when: ansible_os_family == "RedHat"
  6. - name: copy compiled binary
  7. when: not release_install|bool
  8. copy:
  9. src: "{{binary}}"
  10. dest: /usr/local/bin
  11. mode: 0755