From 2602d052b06c5d8d95bc1f7b9be1fdb2366447d7 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 24 Jun 2019 15:06:10 -0700 Subject: [PATCH] openqa/dispatcher: fix respin test scheduler It broke because python3 setup.py install installs binaries to /usr/local/bin , not /usr/bin, so fedora-openqa is no longer where the script expects it to be... Signed-off-by: Adam Williamson --- roles/openqa/dispatcher/files/schedule-live-respins.cron | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/openqa/dispatcher/files/schedule-live-respins.cron b/roles/openqa/dispatcher/files/schedule-live-respins.cron index 7751eb810c..58cf1dd8ad 100644 --- a/roles/openqa/dispatcher/files/schedule-live-respins.cron +++ b/roles/openqa/dispatcher/files/schedule-live-respins.cron @@ -3,4 +3,4 @@ # schedule openQA jobs for the current 'live-respins' compose; if it's # already been tested, this will not create any new jobs -/usr/bin/fedora-openqa compose https://dl.fedoraproject.org/pub/alt/live-respins/ > /dev/null 2>&1 || /usr/bin/true +/usr/local/bin/fedora-openqa compose https://dl.fedoraproject.org/pub/alt/live-respins/ > /dev/null 2>&1 || /usr/bin/true