13 lines
214 B
YAML
13 lines
214 B
YAML
- hosts: localhost
|
|
connection: local
|
|
become: true
|
|
|
|
pre_tasks:
|
|
- name: Update repository
|
|
pacman:
|
|
update_cache: yes
|
|
changed_when: False
|
|
|
|
tasks:
|
|
- include_tasks: tasks/packages.yml
|