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.

17 lines
304 B

  1. ---
  2. - name: APT upgrade
  3. when:
  4. - system_upgrade
  5. - ansible_os_family == "Debian"
  6. include_tasks: apt.yml
  7. tags:
  8. - system-upgrade-apt
  9. - name: YUM upgrade
  10. when:
  11. - system_upgrade
  12. - ansible_os_family == "RedHat"
  13. - not is_fedora_coreos
  14. include_tasks: yum.yml
  15. tags:
  16. - system-upgrade-yum