Skip to content
Snippets Groups Projects
Commit 6b0c09d2 authored by Jörg Sachse's avatar Jörg Sachse
Browse files

fix: remove hardcoded 'ro' option for NFS shares; the option is set in the...

fix: remove hardcoded 'ro' option for NFS shares; the option is set in the Ansible Vault where necessary
parent e8776e24
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,6 @@
src: "{{ item.share }}"
state: "{{ item.state | default('mounted') }}"
fstype: "nfs"
opts: "ro,{{ item.opts | default('ro,defaults,nodev,nosuid,rsize=8192,wsize=8192,vers=3') }}"
opts: "{{ item.opts | default('ro,defaults,nodev,nosuid,rsize=8192,wsize=8192,vers=3') }}"
loop: "{{ vault_permanent_nfs_mounts }}"
tags: [notest]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment