File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ ADD test-cmd-list.txt \
19
19
20
20
RUN /tmp/install-packages.sh </tmp/test-cmd-list.txt \
21
21
&& dnf -Cy clean all \
22
- && rm -r /tmp/* /var /lib/dnf/history .sqlite* /var/lib/dnf/repos/*
22
+ && rm -r /tmp/* /usr /lib/sysimage/libdnf5/transaction_history .sqlite* /var/lib/dnf/repos/*
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ dnf -y install /usr/bin/xargs
16
16
while read -r file; do
17
17
case $file in
18
18
/* ) printf " %s\n" " $file " ;;
19
- * ) printf " %s\n" {/usr,}/{,s} bin/" $file " ;;
19
+ * ) printf " %s\n" {/usr,}/bin/" $file " ;;
20
20
esac
21
21
done |
22
- xargs dnf -- skip-broken -y install
22
+ xargs dnf -y install -- skip-unavailable --skip-broken
23
23
# --skip-broken: avoid failing on not found packages. Also prevents actually
24
24
# broken packages from failing the install which is not what we want, but
25
25
# there doesn't seem to be way to cleanly just skip the not found ones.
You can’t perform that action at this time.
0 commit comments