Blame 0001-Correct-default-fontawesome-path-broken-by-da2cf1c5.patch

be564e2
From 486ba017ceab1fb240f2fc48fea6169bc8c97319 Mon Sep 17 00:00:00 2001
be564e2
From: Adam Williamson <awilliam@redhat.com>
be564e2
Date: Wed, 1 May 2019 16:19:53 -0700
be564e2
Subject: [PATCH] Correct default fontawesome path (broken by da2cf1c5)
be564e2
be564e2
On Fedora/RHEL, it does not have a dash in it. The changes in
be564e2
da2cf1c5 inadvertently added a dash to the path in the 'base'
be564e2
paths definition (used on Fedora/RHEL), so the font wasn't found.
be564e2
be564e2
Signed-off-by: Adam Williamson <awilliam@redhat.com>
be564e2
---
be564e2
 ipaplatform/base/paths.py | 2 +-
be564e2
 1 file changed, 1 insertion(+), 1 deletion(-)
be564e2
be564e2
diff --git a/ipaplatform/base/paths.py b/ipaplatform/base/paths.py
be564e2
index 1cd2591bc..e1d396690 100644
be564e2
--- a/ipaplatform/base/paths.py
be564e2
+++ b/ipaplatform/base/paths.py
be564e2
@@ -249,7 +249,7 @@ class BasePathNamespace:
be564e2
     USERADD = "/usr/sbin/useradd"
be564e2
     FONTS_DIR = "/usr/share/fonts"
be564e2
     FONTS_OPENSANS_DIR = "/usr/share/fonts/open-sans"
be564e2
-    FONTS_FONTAWESOME_DIR = "/usr/share/fonts/font-awesome"
be564e2
+    FONTS_FONTAWESOME_DIR = "/usr/share/fonts/fontawesome"
be564e2
     USR_SHARE_IPA_DIR = "/usr/share/ipa/"
be564e2
     USR_SHARE_IPA_CLIENT_DIR = "/usr/share/ipa/client"
be564e2
     CA_TOPOLOGY_ULDIF = "/usr/share/ipa/ca-topology.uldif"
be564e2
-- 
be564e2
2.21.0
be564e2