This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
homeserver-ansible/tasks/bootstrap.yml

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