base: added handlers for entries in fstab

This commit is contained in:
Jérémy Dubois 2023-11-09 17:06:00 +01:00
parent aed20187de
commit 6822eaa4f0
2 changed files with 11 additions and 0 deletions

View file

@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* nagios-nrpe: add the ipmi_sensor check
* base: doas configuration for ipmi_sensor NRPE check
* base: deactivate insults in sudo
* base: added handlers for entries in fstab
### Changed

View file

@ -17,6 +17,16 @@
args:
warn: false
- name: remount /usr/X11R6 noatime
ansible.builtin.command: mount -u -o noatime /usr/X11R6
args:
warn: false
- name: remount /usr/local noatime
ansible.builtin.command: mount -u -o noatime /usr/local
args:
warn: false
- name: remount /tmp noexec
ansible.builtin.command: mount -u -o noexec /tmp
args: