-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We no longer need to install python on Ubuntu 18.04 #1403
Comments
We still allow people to specify other versions so we should either restrict the base boxes allowed or make the check of ubuntu versions decide on this action. |
Eureka: In - name: install python
raw: test -e /usr/bin/python || (apt-get update; apt-get install -y python;)
register: output
changed_when:
- output.stdout != ""
- output.stdout != "\r\n"
when: islandora_distro|default('') is match("ubuntu/") which leads to it being skipped when the playbook is run
because I'm running I'll confirm by adding that in with |
This is indeed user error 😰 I mean, we still have |
No this is still an issue. This is the reason that when I tried to build a playbook it froze at this step. Changing this step from
to
fixed it. So I personally need this fixed. |
Ubuntu 18.04 ships with python 3, so instead of installing python 2, we can set
ansible_python_interpreter=/usr/bin/python3
in our host file if using Ubuntu.The text was updated successfully, but these errors were encountered: