start zfs install
This commit is contained in:
11
ansible/roles/python-install/tasks/main.yml
Normal file
11
ansible/roles/python-install/tasks/main.yml
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
- 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
|
Reference in New Issue
Block a user