homeserver-iac/tasks/bootstrap.yml
2023-08-21 17:19:29 -04:00

10 lines
268 B
YAML

- name: Check if Python is present
ping:
ignore_errors: true
register: ping
- name: Bootstrap Python
become: no
raw: "echo root | su -c 'pacman-key --init && pacman-key --populate archlinuxarm && pacman --noconfirm -Syu python' root"
when: ping is failed