diff options
author | Adam Williamson <awilliam@redhat.com> | 2017-08-17 14:22:42 -0700 |
---|---|---|
committer | Adam Williamson <awilliam@redhat.com> | 2017-08-17 14:22:42 -0700 |
commit | e6ee55eb7871c45d66297f8829d65b8266baa111 (patch) | |
tree | 8e2b36b4fb75956961561ca2e95658eaf651b032 | |
parent | b5f825741a96e3c98da7a24b64927282827a4502 (diff) | |
download | ansible-e6ee55eb7871c45d66297f8829d65b8266baa111.tar.gz ansible-e6ee55eb7871c45d66297f8829d65b8266baa111.tar.xz ansible-e6ee55eb7871c45d66297f8829d65b8266baa111.zip |
openqa/server: no root squash for rw access to factory share
Might be better to do this with some other account, but uh, for
now...
-rw-r--r-- | roles/openqa/server/templates/exports.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openqa/server/templates/exports.j2 b/roles/openqa/server/templates/exports.j2 index 3e117ad85..191d2b400 100644 --- a/roles/openqa/server/templates/exports.j2 +++ b/roles/openqa/server/templates/exports.j2 @@ -1 +1 @@ -/var/lib/openqa/share *(ro,insecure,all_squash) {% for host in groups['openqa-hdds-workers'] %} {{ host }}(rw,insecure) {% endfor %} +/var/lib/openqa/share *(ro,insecure,all_squash) {% for host in groups['openqa-hdds-workers'] %} {{ host }}(rw,insecure,no_root_squash) {% endfor %} |