This commit is contained in:
parent
fc23dc068d
commit
0df98d4341
@ -8,7 +8,7 @@
|
|||||||
- name: Download & install static binaries
|
- name: Download & install static binaries
|
||||||
ansible.builtin.get_url:
|
ansible.builtin.get_url:
|
||||||
url: "{{ item.url }}"
|
url: "{{ item.url }}"
|
||||||
dest: "/usr/local/bin/{{ item.filename }}"
|
dest: /usr/local/bin/{{ item.filename }}
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 0755
|
mode: 0755
|
||||||
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
- name: Install ansible-galaxy collections
|
- name: Install ansible-galaxy collections
|
||||||
ansible.builtin.shell:
|
ansible.builtin.shell:
|
||||||
cmd: "ansible-galaxy collection install {{ item }}"
|
cmd: ansible-galaxy collection install {{ item }}
|
||||||
loop: "{{ dependencies.ansible_galaxy_collections }}"
|
loop: "{{ dependencies.ansible_galaxy_collections }}"
|
||||||
|
|
||||||
- name: Install distro packages
|
- name: Install distro packages
|
||||||
@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
- name: Update all packages
|
- name: Update all packages
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
name: *
|
name: '*'
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
- block:
|
- block:
|
||||||
|
Loading…
Reference in New Issue
Block a user