mirror of
https://github.com/luzifer-ansible/instance-status.git
synced 2024-11-09 22:20:04 +00:00
10 lines
149 B
YAML
10 lines
149 B
YAML
|
---
|
||
|
|
||
|
- name: Install required packages
|
||
|
pacman:
|
||
|
name: "{{ item }}"
|
||
|
state: latest
|
||
|
with_items: '{{ instance_status_pacman_required }}'
|
||
|
|
||
|
...
|