move python development packages into separate role

This commit is contained in:
Pig Monkey 2019-11-18 16:42:35 -08:00
parent 4e8bf0d5a3
commit 882d697664
3 changed files with 18 additions and 4 deletions

View file

@ -87,14 +87,10 @@ base_packages:
- pv
- minicom
- jq
- python-docs
- python2-docs
- screen
- python-pipenv
- termdown
- fzf
- smartmontools
- pyenv
filesystem_packages:
- dosfstools

View file

@ -82,6 +82,7 @@
- { role: pkgfile, tags: ['pkgfile'], when: "pkgfile is defined" }
- { role: units, tags: ['units'], when: "units is defined" }
- { role: logitech, tags: ['logitech'] }
- { role: pydev, tags: ['pydev'] }
vars_prompt:
- name: user_password
prompt: "Enter desired user password"

View file

@ -0,0 +1,17 @@
---
- name: Install pipenv
pacman:
name: python-pipenv
state: present
- name: Install pyenv
pacman:
name: pyenv
state: present
- name: Install documentation
pacman:
name:
- python-docs
- python2-docs
state: present