File create-system-directory-at-the-correct-place.patch of Package cobbler
From 35a897a26f4e055f29c778c16b3143af42b80578 Mon Sep 17 00:00:00 2001
From: Michael Calmer <mc@suse.de>
Date: Sun, 24 Mar 2019 17:42:16 +0100
Subject: [PATCH] create system directory at the correct place
---
setup.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/setup.py b/setup.py
index 27c44f9e..924dd70a 100644
--- a/setup.py
+++ b/setup.py
@@ -661,8 +661,8 @@ if __name__ == "__main__":
# files
("%sgrub_config/grub" % libpath, glob("config/grub/grub/*")),
# dirs
- ("%sgrub_config/grub/grub/system" % libpath, []),
- ("%sgrub_config/grub/grub/system_link" % libpath, []),
+ ("%sgrub_config/grub/system" % libpath, []),
+ ("%sgrub_config/grub/system_link" % libpath, []),
("%sreporting" % etcpath, glob("templates/reporting/*")),
("%spower" % etcpath, glob("templates/power/*")),
# Build empty directories to hold triggers
--
2.16.4