From fd272ec608f134881732b8177c3ee7719dd03d0a Mon Sep 17 00:00:00 2001 From: Pat Riehecky Date: Mar 27 2022 17:46:27 +0000 Subject: Weak ordering on `httpd.service` for kojid/ra If you're running `kojid` or `kojira` on the same host as as the koji-hub, it is helpful to have these startup after the `httpd.service` has loaded. --- diff --git a/builder/kojid.service b/builder/kojid.service index 3213192..0c63110 100644 --- a/builder/kojid.service +++ b/builder/kojid.service @@ -2,7 +2,8 @@ Description=Koji build server Documentation=https://docs.pagure.org/koji/server_howto/ -After=network.target +# If the koji-hub is on this host, httpd.service is needed first +After=network.target httpd.service [Service] ExecStart=/usr/sbin/kojid \ diff --git a/util/kojira.service b/util/kojira.service index 8d468cf..3c14c5e 100644 --- a/util/kojira.service +++ b/util/kojira.service @@ -2,7 +2,8 @@ Description=Koji repo administration Documentation=https://docs.pagure.org/koji/server_howto/ -After=network.target +# If the koji-hub is on this host, httpd.service is needed first +After=network.target httpd.service [Service] ExecStart=/usr/sbin/kojira \