summaryrefslogtreecommitdiffstats
path: root/scripts/find_aktualizr_dependencies.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/find_aktualizr_dependencies.sh')
-rwxr-xr-xscripts/find_aktualizr_dependencies.sh23
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
2set -euo pipefail
3
4parentdir="$(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