EvoBSD/roles/post-install/tasks/update.yml

9 lines
224 B
YAML

---
- name: "Check and install updates (erratas) if available"
command: /usr/sbin/syspatch
ignore_errors: true
when: ansible_distribution_version is version_compare("6.1",'>=')
tags:
- post-install
- updates