mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-12 01:44:21 +00:00
Drop various old workarounds from _support_server
I tested a run with these commented out, it worked fine. Seems the bugs are all fixed now. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
ef3555aaa1
commit
e04ee00e19
@ -14,11 +14,8 @@ sub run {
|
|||||||
assert_script_run "firewall-cmd --add-service=dhcp";
|
assert_script_run "firewall-cmd --add-service=dhcp";
|
||||||
assert_script_run "firewall-cmd --add-service=dns";
|
assert_script_run "firewall-cmd --add-service=dns";
|
||||||
# start server
|
# start server
|
||||||
# FIXME: workaround RHBZ#1554390
|
|
||||||
assert_script_run "setenforce Permissive";
|
|
||||||
assert_script_run "systemctl restart dnsmasq.service";
|
assert_script_run "systemctl restart dnsmasq.service";
|
||||||
assert_script_run "systemctl is-active dnsmasq.service";
|
assert_script_run "systemctl is-active dnsmasq.service";
|
||||||
assert_script_run "setenforce Enforcing";
|
|
||||||
|
|
||||||
## ISCSI
|
## ISCSI
|
||||||
|
|
||||||
@ -26,8 +23,6 @@ sub run {
|
|||||||
assert_script_run "printf '<target iqn.2016-06.local.domain:support.target1>\n backing-store /dev/vdb\n incominguser test weakpassword\n</target>' > /etc/tgt/conf.d/openqa.conf";
|
assert_script_run "printf '<target iqn.2016-06.local.domain:support.target1>\n backing-store /dev/vdb\n incominguser test weakpassword\n</target>' > /etc/tgt/conf.d/openqa.conf";
|
||||||
# open firewall port
|
# open firewall port
|
||||||
assert_script_run "firewall-cmd --add-service=iscsi-target";
|
assert_script_run "firewall-cmd --add-service=iscsi-target";
|
||||||
# tgtd currently fails to run on f26 with SELinux enforcing
|
|
||||||
assert_script_run "setenforce Permissive";
|
|
||||||
assert_script_run "systemctl restart tgtd.service";
|
assert_script_run "systemctl restart tgtd.service";
|
||||||
assert_script_run "systemctl is-active tgtd.service";
|
assert_script_run "systemctl is-active tgtd.service";
|
||||||
|
|
||||||
@ -52,11 +47,6 @@ sub run {
|
|||||||
assert_script_run "printf '/export 10.0.2.0/24(ro)\n/repo 10.0.2.0/24(ro)' > /etc/exports";
|
assert_script_run "printf '/export 10.0.2.0/24(ro)\n/repo 10.0.2.0/24(ro)' > /etc/exports";
|
||||||
# open firewall port
|
# open firewall port
|
||||||
assert_script_run "firewall-cmd --add-service=nfs";
|
assert_script_run "firewall-cmd --add-service=nfs";
|
||||||
# workaround RHBZ #1402427: somehow the file is incorrectly labelled
|
|
||||||
# even after a clean install with fixed selinux-policy
|
|
||||||
# Bypass: do not execute restorecon if file do not exist
|
|
||||||
# (for PowerPC rpcbind not in same path)
|
|
||||||
assert_script_run 'for xx in /usr/bin/rpcbind /sbin/rpcbind; do [ -f $xx ] && restorecon $xx; done';
|
|
||||||
# start the server
|
# start the server
|
||||||
assert_script_run "systemctl restart nfs-server.service";
|
assert_script_run "systemctl restart nfs-server.service";
|
||||||
assert_script_run "systemctl is-active nfs-server.service";
|
assert_script_run "systemctl is-active nfs-server.service";
|
||||||
|
Loading…
Reference in New Issue
Block a user