You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
391 B

  1. ---
  2. # raw: cat /etc/issue.net | grep '{{ bootstrap_versions }}'
  3. - name: Bootstrap | Check if bootstrap is needed
  4. raw: which python
  5. register: need_bootstrap
  6. ignore_errors: True
  7. - name: Bootstrap | Install python 2.x
  8. raw: DEBIAN_FRONTEND=noninteractive apt-get install -y python-minimal
  9. when: need_bootstrap | failed
  10. - set_fact:
  11. ansible_python_interpreter: "/usr/bin/python"