From Fedora Project Wiki
As per February 23rd, 2017 I followed this installation guide on a PowerPC host installed with F25 distro. I have following comments:
- about
/etc/openqa/openqa.ini
if httpd is not configured for SSL then need to set OpenID with
httpsonly = 0
- about WebUI access and SElinux may need to enable httpd with setsebool
setsebool -P httpd_can_network_connect 1
- about Check out the Fedora tests, need to use fedora as git clone output dir:
git clone https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git fedora
- about the created /var/lib/openqa/factory/hdd/fixed the chown command has to be done also on hdd dir (to avoid errors when openQA is executed)
chown geekotest /var/lib/openqa/factory/hdd chown geekotest /var/lib/openqa/factory/hdd/fixed/*
- before to execute createhdds script, need to verify the libvirtd and virtlogd services are active and start them if not.
systemctl status libvirtd virtlogd
- at least for PowerPC need also to enable kvm device access and disable smt
sudo chmod go+rw /dev/kvm; sudo ppc64_cpu --smt=off