rpm_upgrade.yml 1.0 KB

1234567891011121314151617181920212223242526272829
  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. - name: Ensure python-yaml present for config upgrade
  11. package: name=PyYAML state=present
  12. when: not openshift.common.is_atomic | bool
  13. - name: Install Node service file
  14. template:
  15. dest: "/etc/systemd/system/{{ openshift.common.service_type }}-node.service"
  16. src: "node.service.j2"
  17. register: l_node_unit
  18. # NOTE: This is needed to make sure we are using the correct set
  19. # of systemd unit files. The RPMs lay down defaults but
  20. # the install/upgrade may override them in /etc/systemd/system/.
  21. # NOTE: We don't use the systemd module as some versions of the module
  22. # require a service to be part of the call.
  23. - name: Reload systemd units
  24. command: systemctl daemon-reload
  25. when: l_node_unit | changed