base: configure "/var/log" for servers that have a mount on it

This commit is contained in:
Jérémy Dubois 2023-11-13 16:01:47 +01:00
parent 1f0011ad2a
commit aee18bfde9
3 changed files with 7 additions and 0 deletions

View file

@ -82,6 +82,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* base: ignore errors on packages installation because it fails for some packages when run in check mode
* evomaintenance: upstream release 23.10.1
* accounts, etc-git, evocheck, nagios-nrpe: multiple changes to not fail when run in check mode
* base: configure "/var/log" for servers that have a mount on it
### Fixed

View file

@ -12,6 +12,11 @@
args:
warn: false
- name: remount /var/log noatime
ansible.builtin.command: mount -u -o noatime /var/log
args:
warn: false
- name: remount /usr noatime
ansible.builtin.command: mount -u -o noatime /usr
args:

View file

@ -14,6 +14,7 @@
with_items:
- "/"
- "/var"
- "/var/log"
- "/usr"
- "/usr/X11R6"
- "/usr/local"