Skip to content

Commit

Permalink
Add virtualenv package install to prepare play (#51)
Browse files Browse the repository at this point in the history
* Add virtualenv package install to prepare play

* Bump release version
  • Loading branch information
teddyphreak authored Mar 8, 2024
1 parent 70619a8 commit 6580c03
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
namespace: nephelaiio
name: mongodb
version: 0.2.17
version: 0.2.18
readme: README.md
authors:
- Ted Cook <[email protected]>
Expand Down
11 changes: 11 additions & 0 deletions playbooks/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@
roles:
- nephelaiio.mongodb.pip
tasks:
- name: Install yum wheel package
ansible.builtin.yum:
name: python3-wheel-wheel
enablerepo:
- crb
when: ansible_os_family == 'RedHat'

- name: Install virtualenv
ansible.builtin.package:
name: virtualenv

- name: Add host entries for cluster members
ansible.builtin.lineinfile:
path: /etc/hosts
Expand Down

0 comments on commit 6580c03

Please sign in to comment.