summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/state/activating_state.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/state/activating_state.cpp b/src/state/activating_state.cpp
index 6192711..3f852c7 100644
--- a/src/state/activating_state.cpp
+++ b/src/state/activating_state.cpp
@@ -240,7 +240,9 @@ std::unique_ptr<resource::Process>
std::vector<std::string> params = {// Use curl plugin ...
"curl",
// ... to mount http resource at url
- "url=" + url};
+ "url=" + url,
+ // custom OpenBMC path for CA
+ "capath=/etc/ssl/certs/authority"};
// Authenticate if needed
if (machine.getTarget()->credentials)