There was an error while loading. Please reload this page.
1 parent 0472d84 commit 3cb9acdCopy full SHA for 3cb9acd
1 file changed
build_files/base/20-tests.sh
@@ -43,6 +43,20 @@ for package in "${IMPORTANT_PACKAGES[@]}"; do
43
rpm -q "${package}" >/dev/null || { echo "Missing package: ${package}... Exiting"; exit 1 ; }
44
done
45
46
+# these packages are supposed to be removed
47
+# and are considered footguns
48
+UNWANTED_PACKAGES=(
49
+ firefox
50
+ plasma-discover-kns
51
+ plasma-discover-rpm-ostree
52
+ podman-docker
53
+)
54
+
55
+for package in "${UNWANTED_PACKAGES[@]}"; do
56
+ if rpm -q "${package}" >/dev/null 2>&1; then
57
+ echo "Unwanted package found: ${package}... Exiting"; exit 1
58
+ fi
59
+done
60
IMPORTANT_UNITS=(
61
brew-update.timer
62
brew-upgrade.timer
0 commit comments