You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
892 B
29 lines
892 B
From 6dc2d5628fded20609561ca3c63517b3dc381042 Mon Sep 17 00:00:00 2001 |
|
From: David Tardon <dtardon@redhat.com> |
|
Date: Thu, 11 Mar 2021 15:48:23 +0100 |
|
Subject: [PATCH] rc-local: order after network-online.target |
|
|
|
I think this was the intent of commit 91b684c7300879a8d2006038f7d9185d92c3c3bf, |
|
just network-online.target didn't exist back then. |
|
|
|
RHEL-only |
|
|
|
Resolves: #1954429 |
|
--- |
|
units/rc-local.service.in | 3 ++- |
|
1 file changed, 2 insertions(+), 1 deletion(-) |
|
|
|
diff --git a/units/rc-local.service.in b/units/rc-local.service.in |
|
index 55e83dfe00..0eee722154 100644 |
|
--- a/units/rc-local.service.in |
|
+++ b/units/rc-local.service.in |
|
@@ -13,7 +13,8 @@ |
|
Description={{RC_LOCAL_PATH}} Compatibility |
|
Documentation=man:systemd-rc-local-generator(8) |
|
ConditionFileIsExecutable={{RC_LOCAL_PATH}} |
|
-After=network.target |
|
+After=network-online.target |
|
+Wants=network-online.target |
|
|
|
[Service] |
|
Type=forking
|
|
|