Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
23 lines
884 B
Diff
23 lines
884 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Marie Ramlow <me@nycode.dev>
|
|
Date: Fri, 10 Jan 2025 15:51:33 +0100
|
|
Subject: [PATCH] install: unit_file_exists_full: follow symlinks
|
|
|
|
---
|
|
src/shared/install.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/shared/install.c b/src/shared/install.c
|
|
index 6d87858a3c..8da022eb64 100644
|
|
--- a/src/shared/install.c
|
|
+++ b/src/shared/install.c
|
|
@@ -3226,7 +3226,7 @@ int unit_file_exists_full(RuntimeScope scope, const LookupPaths *lp, const char
|
|
&c,
|
|
lp,
|
|
name,
|
|
- /* flags= */ 0,
|
|
+ /* flags= */ SEARCH_FOLLOW_CONFIG_SYMLINKS,
|
|
ret_path ? &info : NULL,
|
|
/* changes= */ NULL,
|
|
/* n_changes= */ NULL);
|