Change authority D-Bus names
Changing authority service references in code from 'ldap' to more
generic name, to comply with change in phosphor-certificate-manager.
Related change:
https://gerrit.openbmc.org/c/openbmc/phosphor-certificate-manager/+/65458
Tested:
Adding, reading and removal of CA Certificate via Redfish works without
any noticeable regression.
Change-Id: Ia0517844c5f1d8eb55c4dec156f409fd6875a502
Signed-off-by: Michal Orzel <michalx.orzel@intel.com>
diff --git a/docs/README.md b/docs/README.md
index af95ce6..c78ee69 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -38,7 +38,7 @@
```
curl -c cjar -b cjar -k -H "Content-Type: application/octet-stream"
- -X PUT -T <FILE> https://<BMC_IP>/xyz/openbmc_project/certs/authority/ldap
+ -X PUT -T <FILE> https://<BMC_IP>/xyz/openbmc_project/certs/authority/truststore
```
#### Clear LDAP Config
diff --git a/phosphor-ldap-config/ldap_config.cpp b/phosphor-ldap-config/ldap_config.cpp
index 35c3041..5717ad5 100644
--- a/phosphor-ldap-config/ldap_config.cpp
+++ b/phosphor-ldap-config/ldap_config.cpp
@@ -32,7 +32,7 @@
constexpr auto ldapsScheme = "ldaps";
constexpr auto certObjPath = "/xyz/openbmc_project/certs/client/ldap/1";
constexpr auto certRootPath = "/xyz/openbmc_project/certs/client/ldap";
-constexpr auto authObjPath = "/xyz/openbmc_project/certs/authority/ldap";
+constexpr auto authObjPath = "/xyz/openbmc_project/certs/authority/truststore";
constexpr auto certIface = "xyz.openbmc_project.Certs.Certificate";
constexpr auto certProperty = "CertificateString";