base_packages.yml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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: name=ntp state=present
  16. when:
  17. - openshift_clock_enabled | default(True) | bool
  18. - chrony_installed.rc != 0
  19. register: result
  20. until: result is succeeded
  21. - name: Start and enable ntpd/chronyd
  22. command: timedatectl set-ntp true
  23. when: openshift_clock_enabled | default(True) | bool
  24. - when:
  25. - not openshift_is_atomic | bool
  26. block:
  27. - name: Ensure openshift-ansible installer package deps are installed
  28. package:
  29. name: "{{ item }}"
  30. state: present
  31. with_items:
  32. - iproute
  33. - "{{ 'python3-dbus' if ansible_distribution == 'Fedora' else 'dbus-python' }}"
  34. - "{{ 'python3-PyYAML' if ansible_distribution == 'Fedora' else 'PyYAML' }}"
  35. - "{{ 'python-ipaddress' if ansible_distribution != 'Fedora' else '' }}"
  36. - libsemanage-python
  37. - yum-utils
  38. when: item != ''
  39. register: result
  40. until: result is succeeded