Files
ansible-pull/roles/workstation/tasks/software/packer.yml
2021-02-25 09:37:42 +01:00

10 lines
305 B
YAML

- name: software | packer | install binary
unarchive:
src: https://releases.hashicorp.com/packer/{{ packer_version }}/packer_{{ packer_version }}_linux_amd64.zip
dest: /usr/local/bin
remote_src: yes
mode: 0755
owner: root
group: root
when: packer is defined and packer == true