ansible-role-ansible/defaults/main.yml
Steve Jorgensen ac2fc8372c
Fixes for epel repo name, and allow to specify a pip executable name (#25)
* Fixes for epel repo name, and allow to specify a pip executable name

* Renamed ansible_epel_name to ansible_epel_repo_name

---------

Co-authored-by: Steven Jorgensen <sjorgen@sandia.gov>
2023-04-27 14:19:21 -05:00

18 lines
437 B
YAML

---
ansible_default_release: ""
# Valid options include: 'package' or 'pip'.
ansible_install_method: package
# Used only if ansible_install_method is 'pip'. If empty, defaults to latest.
ansible_install_version_pip: ''
# Which extra arguments should be gived to pip
ansible_install_pip_extra_args: ''
# path to pip executable to use
ansible_pip_executable: ''
# name of epel repo if it isn't standard
ansible_epel_repo_name: 'epel'