remount-usr: use findmnt to find if usr is a readonly partition
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Jérémy Lecour 2022-01-27 11:21:19 +01:00 committed by Jérémy Lecour
parent 80f8a94798
commit 2849039fad
2 changed files with 5 additions and 4 deletions

View File

@ -15,6 +15,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
### Changed
* evolinux-base: many improvements for backup-server-state script
* remount-usr: use findmnt to find if usr is a readonly partition
### Fixed

View File

@ -1,10 +1,10 @@
---
# findmnt returns 0 on hit, 1 on miss
# If the return code is higher than 1, it's a blocking failure
- name: "check if /usr is a read-only partition"
command: 'grep -E " /usr.*ro" /proc/mounts'
args:
warn: no
command: 'findmnt /usr --noheadings --options ro'
changed_when: False
failed_when: False
failed_when: usr_partition.rc > 1
check_mode: no
register: usr_partition