1abbee
From 30c5299e91db30f07b64c6c47ac7417bd4e6988c Mon Sep 17 00:00:00 2001
1abbee
From: Lukas Nykryn <lnykryn@redhat.com>
1abbee
Date: Tue, 30 Aug 2016 15:04:07 +0200
1abbee
Subject: [PATCH] install: fix disable when /etc/systemd/system is a symlink
1abbee
1abbee
Cherry-picked from: 67852d08e6a35d34b428e8be64efdb3f003f4697
1abbee
Resolves: #1285996
1abbee
---
1abbee
 src/shared/install.c | 2 +-
1abbee
 1 file changed, 1 insertion(+), 1 deletion(-)
1abbee
1abbee
diff --git a/src/shared/install.c b/src/shared/install.c
c62b8e
index 61aaafe7bc..ab86cd1453 100644
1abbee
--- a/src/shared/install.c
1abbee
+++ b/src/shared/install.c
1abbee
@@ -476,7 +476,7 @@ static int remove_marked_symlinks(
1abbee
         if (set_size(remove_symlinks_to) <= 0)
1abbee
                 return 0;
1abbee
 
1abbee
-        fd = open(config_path, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC|O_NOFOLLOW);
1abbee
+        fd = open(config_path, O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC);
1abbee
         if (fd < 0)
1abbee
                 return -errno;
1abbee