Skip to content

Commit

Permalink
Merge pull request #33 from roles-ansible/venv
Browse files Browse the repository at this point in the history
Adding some additional python venv and pip packages
  • Loading branch information
DO1JLR authored Oct 30, 2023
2 parents 1c12366 + cd1e031 commit 16f389c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion tasks/python_venv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@
- name: Install Python3 Virtualenv
become: true
ansible.builtin.package:
name: python3-virtualenv
name: "{{ item }}"
state: present
loop:
- 'python3-virtualenv'
- 'python3-dev'
- 'python3-pip'
- 'python-is-python3'

- name: Install etebase python requirements in virtualenv
become: true
Expand Down
2 changes: 1 addition & 1 deletion vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ etebase__repo_api: 'https://api.github.com/repos/etesync/server/tags'
etebase__venv: "{{ etebase__venv_path }}/{{ etebase_version_target }}"

# versionscheck
playbook_version_number: 16 # should be a integer
playbook_version_number: 17 # should be a integer
playbook_version_path: 'role-do1jlr.etebase'

0 comments on commit 16f389c

Please sign in to comment.