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.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/find_aktualizr_dependencies.sh b/scripts/find_aktualizr_dependencies.sh
new file mode 100755
index 0000000..f011e0a
--- /dev/null
+++ b/scripts/find_aktualizr_dependencies.sh
@@ -0,0 +1,24 @@
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_packages.py aktualizr \
13 aktualizr-native \
14 aktualizr-auto-prov \
15 aktualizr-implicit-prov \
16 aktualizr-ca-implicit-prov \
17 aktualizr-hsm-prov \
18 aktualizr-disable-send-ip \
19 aktualizr-example-interface \
20 aktualizr-log-debug \
21 libp11 \
22 dpkg \
23 systemd
24