base_packages.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ---
  2. # l_base_packages_hosts may be passed in via prerequisites.yml during scaleup plays
  3. # and upgrade_control_plane.yml upgrade plays.
  4. - name: Install packages necessary for installer
  5. hosts: "{{ l_base_packages_hosts | default('oo_all_hosts') }}"
  6. any_errors_fatal: true
  7. tasks:
  8. - name: Determine if chrony is installed
  9. command: rpm -q chrony
  10. failed_when: false
  11. register: chrony_installed
  12. # chrony is installed on atomic host by default, so no need to worry about
  13. # atomic here.
  14. - name: Install ntp package
  15. package:
  16. name: ntp
  17. state: present
  18. when:
  19. - openshift_clock_enabled | default(True) | bool
  20. - chrony_installed.rc != 0
  21. register: result
  22. until: result is succeeded
  23. - name: Start and enable ntpd/chronyd
  24. command: timedatectl set-ntp true
  25. when: openshift_clock_enabled | default(True) | bool
  26. - when:
  27. - not openshift_is_atomic | bool
  28. block:
  29. - name: Ensure openshift-ansible installer package deps are installed
  30. package:
  31. name: "{{ pkg_list | join(',') }}"
  32. state: present
  33. vars:
  34. pkg_list:
  35. - iproute
  36. - "{{ 'python3-dbus' if ansible_distribution == 'Fedora' else 'dbus-python' }}"
  37. - "{{ 'python3-PyYAML' if ansible_distribution == 'Fedora' else 'PyYAML' }}"
  38. - "{{ 'python-ipaddress' if ansible_distribution != 'Fedora' else '' }}"
  39. - libsemanage-python
  40. - yum-utils
  41. - "{{ 'python3-docker' if ansible_distribution == 'Fedora' else 'python-docker' }}"
  42. register: result
  43. until: result is succeeded