dexter has uploaded this change for review. ( https://gerrit.osmocom.org/c/onomondo-eim/+/42830?usp=email )
Change subject: config/sys.config: fix certificate paths ......................................................................
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" ]} ]} ].