ansible-roles/webapps/evoadmin-mail/tasks/remount_usr_rw.yml
2017-10-25 11:55:32 +02:00

16 lines
393 B
YAML

---
- name: Get mount options for partitions
shell: "mount | grep 'on /usr type'"
args:
warn: no
register: mount
changed_when: False
failed_when: False
when: not ansible_check_mode
- name: Remount /usr if it is a partition and it is not mounted in rw
command: "mount -o remount,rw /usr"
when: mount.rc == 0 and not mount.stdout_lines.0 | search("rw")
args:
warn: no