Fix var reference;Install packages;Change DHCP identifier to MAC
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
- name: Download & install static binaries
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ item.url }}"
|
||||
dest: "/usr/local/bin/{{ item.name }}"
|
||||
dest: "/usr/local/bin/{{ item.filename }}"
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0755
|
||||
@ -19,6 +19,18 @@
|
||||
cmd: "ansible-galaxy collection install {{ item }}"
|
||||
loop: "{{ dependencies.ansible_galaxy_collections }}"
|
||||
|
||||
- name: Install distro packages
|
||||
ansible.builtin.apt:
|
||||
name: "{{ item }}"
|
||||
update_cache: yes
|
||||
install_recommends: no
|
||||
loop: "{{ dependencies.distro_packages }}"
|
||||
|
||||
- name: Update all packages
|
||||
ansible.builtin.apt:
|
||||
name: *
|
||||
state: latest
|
||||
|
||||
- block:
|
||||
|
||||
- name: Download Helm binary
|
||||
|
Reference in New Issue
Block a user