Releases: Oefenweb/ansible-bash
Releases · Oefenweb/ansible-bash
v2.2.49
v2.2.47
- Add missing dependency
v2.2.45
- Consistency changes
v2.2.44
- Bump
min_ansible_version
v2.2.43
- Make use of Github actions
v2.2.31
- Make
bash_aliases.j2
compatible topython3
(thanks @godspeed-you)
v2.2.24
- Fix Ansible
warnings
- Add support for
Ubuntu 18.04
andDebian 9
v2.2.1
- Concistency changes
v2.2.0
- Added support for (generic)
.bashrc
lines:
To get back the old behavior make sure to add:
bashrc_lines:
- 'if [ -f /etc/bash_completion.d/virtualenvwrapper ]; then'
- ' export WORKON_HOME=$HOME/.virtualenvs'
- ' export PROJECT_HOME=$HOME/checkouts'
- ' . /etc/bash_completion.d/virtualenvwrapper'
- 'fi'
- ''
- 'if [ -f /usr/local/bin/virtualenvwrapper.sh ]; then'
- ' export WORKON_HOME=$HOME/.virtualenvs'
- ' export PROJECT_HOME=$HOME/checkouts'
- ' . /usr/local/bin/virtualenvwrapper.sh'
- 'fi'
v2.1.0
- Added support for virtualenvwrapper in
/usr/local/bin/
, in addition to/etc/bash_completion.d/