post-install: ignore errors from syspatch

This commit is contained in:
Jérémy Dubois 2022-05-03 17:22:20 +02:00
parent 1f07862c84
commit 950dbaec21
2 changed files with 2 additions and 0 deletions

View File

@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- base: fix shell configuration, increase $HISTSIZE, and change history alias so it displays full history
- nagios-nrpe: handle the case where cached_mem is in GB to convert it in MB in check_free_mem.sh
- post-install: improve management of ldif file for ldap
- post-install: ignore errors from syspatch
### Removed

View File

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