diff options
| author | cajun-rat <philip.wise@here.com> | 2018-07-24 11:59:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-24 11:59:07 +0200 |
| commit | b9f5eedb21dd57c8e9f713022242e5a521863886 (patch) | |
| tree | 00013fc0c10ee84250a8250aeb77c58f5cc3887c /scripts/find_aktualizr_dependencies.sh | |
| parent | 90d7ec219b8143a2f36a7c24631385ddbdffc9a9 (diff) | |
| parent | a9e7ea37fd7a86f6cd687908f8d95747a07c6765 (diff) | |
| download | meta-updater-b9f5eedb21dd57c8e9f713022242e5a521863886.tar.gz | |
Merge pull request #351 from advancedtelematic/feat/better-dependencies
Feat/better dependencies
Diffstat (limited to 'scripts/find_aktualizr_dependencies.sh')
| -rwxr-xr-x | scripts/find_aktualizr_dependencies.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/find_aktualizr_dependencies.sh b/scripts/find_aktualizr_dependencies.sh new file mode 100755 index 0000000..786d8a9 --- /dev/null +++ b/scripts/find_aktualizr_dependencies.sh | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | set -euo pipefail | ||
| 3 | |||
| 4 | parentdir="$(dirname "$0")" | ||
| 5 | |||
| 6 | # Does NOT include garage-sign, anything used only for testing (i.e. strace and | ||
| 7 | # gtest), any of the git submodules, all of which are also only used for | ||
| 8 | # testing (tuf-test-vectors, isotp-c, ostreesysroot, and HdrHistogram_c), or | ||
| 9 | # any other third party modules included directly into the source tree | ||
| 10 | # (jsoncpp, open62541, picojson). Also check libp11, dpkg, and systemd since | ||
| 11 | # those are common dependencies not enabled by default. | ||
| 12 | ${parentdir}/find_dependencies.py aktualizr | ||
| 13 | ${parentdir}/find_dependencies.py aktualizr-auto-prov | ||
| 14 | ${parentdir}/find_dependencies.py aktualizr-implicit-prov | ||
| 15 | ${parentdir}/find_dependencies.py aktualizr-ca-implicit-prov | ||
| 16 | ${parentdir}/find_dependencies.py aktualizr-hsm-prov | ||
| 17 | ${parentdir}/find_dependencies.py aktualizr-disable-send-ip | ||
| 18 | ${parentdir}/find_dependencies.py aktualizr-example-interface | ||
| 19 | ${parentdir}/find_dependencies.py aktualizr-log-debug | ||
| 20 | ${parentdir}/find_dependencies.py libp11 | ||
| 21 | ${parentdir}/find_dependencies.py dpkg | ||
| 22 | ${parentdir}/find_dependencies.py systemd | ||
| 23 | |||
