dexter has uploaded this change for review.

View Change

config/sys.config: fix certificate paths

The path of the certificates in the example sys.config
do not match when the eIM is ran locally from the root
directory of the git.

let's align the paths so that they match when the eIM is
started like this:

./_build/default/rel/onomondo_eim_release/bin/onomondo_eim_release console

Change-Id: Ie09d746a6e28ac6fee3e00dfa32cb01f8a7b947e
Related: SYS#7093
---
M config/sys.config
1 file changed, 8 insertions(+), 8 deletions(-)

git pull ssh://gerrit.osmocom.org:29418/onomondo-eim refs/changes/30/42830/1
diff --git a/config/sys.config b/config/sys.config
index 990a442..c3f83d1 100644
--- a/config/sys.config
+++ b/config/sys.config
@@ -3,24 +3,24 @@
{esipa_ip, {127, 0, 0, 1}},
{esipa_port, 8000},
{esipa_ssl_disable, false},
- {esipa_ssl_cert, "config/sample_ssl_cert.crt"},
- {esipa_ssl_key, "config/sample_ssl_cert.key"},
+ {esipa_ssl_cert, "../../../../config/sample_ssl_cert.crt"},
+ {esipa_ssl_key, "../../../../config/sample_ssl_cert.key"},
{rest_ip, {127, 0, 0, 1}},
{rest_port, 8080},
{eim_id, "eIM"},
{es9p_ssl_disable, false},
- {eim_cert, "config/sample_eim_cert_nist.crt"},
- {eim_key, "config/sample_eim_cert_nist.key"},
+ {eim_cert, "../../../../config/sample_eim_cert_nist.crt"},
+ {eim_key, "../../../../config/sample_eim_cert_nist.key"},
{counter_value, 1},
{consumer_euicc, true},
{rest_timeout_stuck, 300},
{rest_timeout_noshow, 1800},
{rest_timeout_expired, 86400},
{root_ci_certs, [
- "config/sgp26_gsma_root_ci_cert_nist_symantec.crt",
- "config/sgp26_gsma_root_ci_cert_nist_oiste.crt",
- "config/sgp26_test_root_ci_cert_nist.crt",
- "config/sgp26_test_root_ci_cert_brainpool.crt"
+ "../../../../config/sgp26_gsma_root_ci_cert_nist_symantec.crt",
+ "../../../../config/sgp26_gsma_root_ci_cert_nist_oiste.crt",
+ "../../../../config/sgp26_test_root_ci_cert_nist.crt",
+ "../../../../config/sgp26_test_root_ci_cert_brainpool.crt"
]}
]}
].

To view, visit change 42830. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: newchange
Gerrit-Project: onomondo-eim
Gerrit-Branch: master
Gerrit-Change-Id: Ie09d746a6e28ac6fee3e00dfa32cb01f8a7b947e
Gerrit-Change-Number: 42830
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier@sysmocom.de>