Initial commit
This commit is contained in:
13
roles/extroot/tasks/prepare.yml
Normal file
13
roles/extroot/tasks/prepare.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
# Update opkg cache
|
||||
- name: Update opkg cache
|
||||
ansible.builtin.command:
|
||||
cmd: "opkg update"
|
||||
changed_when: false
|
||||
|
||||
# Install required packages
|
||||
- name: Install required packages
|
||||
opkg:
|
||||
name: "{{ item }}"
|
||||
state: "present"
|
||||
loop: "{{ extroot_pkgs }}"
|
||||
Reference in New Issue
Block a user