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

9 lines
224 B
YAML
Raw Normal View History

2018-12-28 11:23:49 +01:00
---
- 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