rpm_upgrade.yml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. # input variables:
  3. # - openshift.common.service_type
  4. # - component
  5. # - openshift_pkg_version
  6. # - openshift.common.is_atomic
  7. # We verified latest rpm available is suitable, so just yum update.
  8. - name: Upgrade packages
  9. package: "name={{ openshift.common.service_type }}-{{ component }}{{ openshift_pkg_version }} state=present"
  10. register: result
  11. until: result | success
  12. - name: Ensure python-yaml present for config upgrade
  13. package: name=PyYAML state=present
  14. when: not openshift.common.is_atomic | bool
  15. register: result
  16. until: result | success
  17. - name: Install Node service file
  18. template:
  19. dest: "/etc/systemd/system/{{ openshift.common.service_type }}-node.service"
  20. src: "node.service.j2"
  21. register: l_node_unit
  22. # NOTE: This is needed to make sure we are using the correct set
  23. # of systemd unit files. The RPMs lay down defaults but
  24. # the install/upgrade may override them in /etc/systemd/system/.
  25. # NOTE: We don't use the systemd module as some versions of the module
  26. # require a service to be part of the call.
  27. - name: Reload systemd units
  28. command: systemctl daemon-reload
  29. when: l_node_unit | changed