From 5fcfb353b3937804418b0b15d7fea368fc7d0b10 Mon Sep 17 00:00:00 2001 From: Guy Menanteau Date: Fri, 1 Sep 2017 07:02:56 -0400 Subject: [PATCH] Revert "iscsi backing store not same disk for PowerPC" previously required on f25 host with qemu 2.7.1-6 it is not needed anymore on f26 with qemu 2.9.0-5 This reverts commit 0eb15266117aae47f663297f5f332d480d8549b9. --- tests/_support_server.pm | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/tests/_support_server.pm b/tests/_support_server.pm index e0a496ef..60c88ec0 100644 --- a/tests/_support_server.pm +++ b/tests/_support_server.pm @@ -20,15 +20,7 @@ sub run { ## ISCSI # start up iscsi target - # different backing store for PowerPC and other arches - # on PowerPC, the installation disk is set on /dev/vdb - # so the iscsi backing store must be the /dev/vda - if (get_var('OFW')) { - assert_script_run "printf '\n backing-store /dev/vda\n incominguser test weakpassword\n' > /etc/tgt/conf.d/openqa.conf"; - } else { - assert_script_run "printf '\n backing-store /dev/vdb\n incominguser test weakpassword\n' > /etc/tgt/conf.d/openqa.conf"; - } - + assert_script_run "printf '\n backing-store /dev/vdb\n incominguser test weakpassword\n' > /etc/tgt/conf.d/openqa.conf"; # open firewall port assert_script_run "firewall-cmd --add-service=iscsi-target"; assert_script_run "systemctl restart tgtd.service";