From 10cf1e494e92e849bda29307cb284400d08d9637 Mon Sep 17 00:00:00 2001 From: Pat Riehecky Date: May 13 2022 12:26:47 +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 1218fde..8e97d17 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 b20d590..4a5e984 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 \