Jake Howard
94d483e7b7
It's now a bit faster, and I can live with it. This is also much simpler now!
18 lines
331 B
YAML
18 lines
331 B
YAML
- name: Install python packages
|
|
aur:
|
|
name: "{{ item }}"
|
|
become: true
|
|
become_user: aur_builder
|
|
loop:
|
|
- pyenv
|
|
- python-pip
|
|
- python-virtualenv
|
|
- python2-pip
|
|
- python2-virtualenv
|
|
|
|
- name: Create pyenv directory
|
|
file:
|
|
state: directory
|
|
path: /opt/pyenv
|
|
owner: "{{ user }}"
|
|
group: users
|