openqa/server: allow rw access to nfs share for ppc workers

We need to create the ppc hard disk images from the ppc workers,
so they need rw access to the share.
This commit is contained in:
Adam Williamson 2017-08-17 14:15:03 -07:00
parent aa81a4ecd8
commit b5f825741a
3 changed files with 6 additions and 1 deletions

View file

@ -580,6 +580,10 @@ openqa-ppc64le-01.qa.fedoraproject.org
qa14.qa.fedoraproject.org
qa09.qa.fedoraproject.org
# the workers that need rw access to the factory share to run createhdds
[openqa-hdds-workers]
openqa-ppc64le-01.qa.fedoraproject.org
[packages]
packages03.phx2.fedoraproject.org
packages04.phx2.fedoraproject.org

View file

@ -164,7 +164,7 @@
ignore_errors: yes
- name: Create exports file
copy: src=exports dest=/etc/exports.d/openqa.exports owner=root group=root mode=0644
template: src=exports.j2 dest=/etc/exports.d/openqa.exports owner=root group=root mode=0644
tags:
- config

View file

@ -0,0 +1 @@
/var/lib/openqa/share *(ro,insecure,all_squash) {% for host in groups['openqa-hdds-workers'] %} {{ host }}(rw,insecure) {% endfor %}