added pyenv role

This commit is contained in:
Phil Skentelbery
2019-09-26 17:58:30 -05:00
parent 14074500ac
commit 1585114795
19 changed files with 437 additions and 0 deletions

View File

@ -0,0 +1,20 @@
---
- include: Darwin.yml
when: ansible_os_family == "Darwin"
- include: Debian.yml
when: ansible_os_family == "Debian"
- include: RedHat.yml
when: ansible_os_family == "RedHat"
- include: install.yml
become: true
become_user: "{{ pyenv_owner }}"
when: pyenv_env == "user"
- include: install.yml
become: true
when: pyenv_env == "system"