varnish remout /usr with read/write

This commit is contained in:
Jérémy Lecour 2017-06-07 16:28:32 +02:00 committed by Jérémy Lecour
parent 4d9961b0f9
commit 274de55cc3
2 changed files with 15 additions and 0 deletions

View file

@ -4,6 +4,8 @@
name: libxml-parser-perl
tags: varnish
- include: remount_usr_rw.yml
- name: Create plugin directory
file:
name: /usr/local/share/munin/

View file

@ -0,0 +1,13 @@
---
- 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")