diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-03-31 15:36:25 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-03-31 15:48:10 +0200 |
commit | 11323fa1ed396e3e16f4df327911bc9c60cc6e01 (patch) | |
tree | 15ea0fcf36e8be1603ff4685ebec89a2fa0170d4 /recipes-connectivity/kuksa-val | |
parent | 1e62ea70abd523482e4a181737e7202280a30ce3 (diff) |
Rework nss-agl-driver-db to be a systemd unit at runtime
This avoids the issues seen with access rights changes on /home/agl-driver
and will replace https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/28587
Bug-AGL: SPEC-4599
Change-Id: If01ffc9623208edd7a7705739465fa8fca764b74
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'recipes-connectivity/kuksa-val')
-rw-r--r-- | recipes-connectivity/kuksa-val/kuksa-val_git.bb | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/recipes-connectivity/kuksa-val/kuksa-val_git.bb b/recipes-connectivity/kuksa-val/kuksa-val_git.bb index 48cda1081..04f6f4f64 100644 --- a/recipes-connectivity/kuksa-val/kuksa-val_git.bb +++ b/recipes-connectivity/kuksa-val/kuksa-val_git.bb @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://../LICENSE;md5=2b42edef8fa55315f34f2370b4715ca9 \ file://3rd-party-libs/turtle/LICENSE_1_0.txt;md5=e4224ccaecb14d942c71d31bef20d78c \ file://3rd-party-libs/jwt-cpp/LICENSE;md5=8325a5ce4414c65ffdda392e0d96a9ff" -DEPENDS = "boost openssl mosquitto nss protobuf-native grpc-native grpc" +DEPENDS = "boost openssl mosquitto protobuf-native grpc-native grpc" require kuksa-val.inc @@ -77,11 +77,6 @@ do_install:append() { chgrp 900 ${D}${sysconfdir}/kuksa-val/Server.pem } -pkg_postinst_ontarget:${PN}-client-certificates () { - certutil -A -d /home/agl-driver/.pki/nssdb -n "KuksaRootCA" -t "pC,," -i ${sysconfdir}/kuksa-val/CA.pem - chown agl-driver:agl-driver -R /home/agl-driver/ -} - # Put client certificates into their own package so we can avoid # duplicates of them for e.g. cluster clients. Longer term this # will need to be revisited. @@ -95,4 +90,4 @@ FILES:${PN}-client-certificates = " \ FILES:${PN} += "${systemd_system_unitdir} ${datadir}" -RDEPENDS:${PN} += "${PN}-client-certificates nss-agl-driver-db" +RDEPENDS:${PN} += "${PN}-client-certificates" |