10 lines
225 B
YAML
10 lines
225 B
YAML
---
|
|
- hosts: all
|
|
pre_tasks:
|
|
- name: "install python and archlinux-keyring"
|
|
raw: pacman -Sy python archlinux-keyring --noconfirm
|
|
when: not debian.stdout
|
|
gather_facts: false
|
|
roles:
|
|
- ansible_bootstrap
|