1
0

11 lines
230 B
YAML
Raw Normal View History

2022-09-03 01:29:46 +12:00
---
- name: check python
raw: test -e /usr/bin/python3
changed_when: false
failed_when: false
register: check_python
- name: install python
become: true
raw: pacman -Sy python3 --noconfirm
when: check_python.rc != 0