diff options
author | Patrick Vacek <patrickvacek@gmail.com> | 2019-02-21 17:22:50 +0100 |
---|---|---|
committer | Patrick Vacek <patrickvacek@gmail.com> | 2019-02-26 17:07:38 +0100 |
commit | 350be04fa412a0770f67e0ab75807094fe531a9e (patch) | |
tree | f014d96d61b4b9c597275417b8c79d304b722ef0 /recipes-sota | |
parent | 161c2da71b85e85f79bab8c54a02ee9587094b63 (diff) | |
download | meta-updater-350be04fa412a0770f67e0ab75807094fe531a9e.tar.gz |
aktualizr-auto-prov-creds: remove API Gateway URL if it exists.
It will only be used by garage-sign.
Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
Diffstat (limited to 'recipes-sota')
-rw-r--r-- | recipes-sota/aktualizr/aktualizr-auto-prov-creds.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes-sota/aktualizr/aktualizr-auto-prov-creds.bb b/recipes-sota/aktualizr/aktualizr-auto-prov-creds.bb index 34460af..0628a61 100644 --- a/recipes-sota/aktualizr/aktualizr-auto-prov-creds.bb +++ b/recipes-sota/aktualizr/aktualizr-auto-prov-creds.bb | |||
@@ -11,9 +11,14 @@ require credentials.inc | |||
11 | do_install() { | 11 | do_install() { |
12 | if [ -n "${SOTA_PACKED_CREDENTIALS}" ]; then | 12 | if [ -n "${SOTA_PACKED_CREDENTIALS}" ]; then |
13 | install -m 0700 -d ${D}${localstatedir}/sota | 13 | install -m 0700 -d ${D}${localstatedir}/sota |
14 | cp ${SOTA_PACKED_CREDENTIALS} ${D}${localstatedir}/sota/sota_provisioning_credentials.zip | 14 | cp "${SOTA_PACKED_CREDENTIALS}" ${D}${localstatedir}/sota/sota_provisioning_credentials.zip |
15 | # Device should not be able to push data to treehub | 15 | # Device should not be able to push data to treehub |
16 | zip -d ${D}${localstatedir}/sota/sota_provisioning_credentials.zip treehub.json | 16 | zip -d ${D}${localstatedir}/sota/sota_provisioning_credentials.zip treehub.json |
17 | # Device has no use for the API Gateway. Remove if present. See: | ||
18 | # https://github.com/advancedtelematic/ota-plus-server/pull/1913/ | ||
19 | if unzip -l ${D}${localstatedir}/sota/sota_provisioning_credentials.zip api_gateway.url > /dev/null; then | ||
20 | zip -d ${D}${localstatedir}/sota/sota_provisioning_credentials.zip api_gateway.url | ||
21 | fi | ||
17 | fi | 22 | fi |
18 | } | 23 | } |
19 | 24 | ||