added task for grabbng software binary as software installation
This commit is contained in:
@@ -216,3 +216,18 @@
|
||||
msg: Rebooting machine
|
||||
tags:
|
||||
- get_git_pkgs
|
||||
- name: Installing software as pre-compiled binary
|
||||
block:
|
||||
- name: Grabbing software binary
|
||||
become: true
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ item.src }}"
|
||||
dest: "/usr/bin/{{ item.name }}"
|
||||
owner: root
|
||||
group: root
|
||||
mode: "744"
|
||||
force: true
|
||||
backup: true
|
||||
notify: "{{ item.handler }}"
|
||||
loop: "{{ (pkgs.binaries.core | default([])) }}"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user