Python for Choux

This commit is contained in:
Bertrand Benjamin 2018-08-25 17:57:59 +02:00
parent 55579bbd5e
commit bfa71df9fa
2 changed files with 10 additions and 0 deletions

View File

@ -12,6 +12,7 @@
- include: tasks/users.yml - include: tasks/users.yml
- include: tasks/sudo.yml - include: tasks/sudo.yml
- include: tasks/ssh.yml - include: tasks/ssh.yml
- include: tasks/arch_python.yml
- include: tasks/arch_aur.yml - include: tasks/arch_aur.yml
- include: tasks/arch_gnome.yml - include: tasks/arch_gnome.yml
- include: tasks/arch_graphicals.yml - include: tasks/arch_graphicals.yml

9
tasks/arch_python.yml Normal file
View File

@ -0,0 +1,9 @@
---
- name: Install python env
pacman:
name: "{{ item }}"
state: present
with_items:
- python
- python-virtualenv