21 lines
411 B
YAML
21 lines
411 B
YAML
---
|
|
# Remove non-mesh wpad packages
|
|
- name: Remove non-mesh wpad packages
|
|
opkg:
|
|
name: "{{ item }}"
|
|
state: "absent"
|
|
loop: "{{ non_mesh_pkgs }}"
|
|
|
|
# Update opkg cache
|
|
- name: Update opkg cache
|
|
ansible.builtin.command:
|
|
cmd: "opkg update"
|
|
changed_when: false
|
|
|
|
# Install mesh packages
|
|
- name: Install mesh packages
|
|
opkg:
|
|
name: "{{ item }}"
|
|
state: "present"
|
|
loop: "{{ mesh11sd_pkgs }}"
|