90-cleanup-pkgs 228 Bytes
Newer Older
1 2 3
#!/bin/sh -efu
# remove temporary packages from the installed system

4 5
[ -n "$GLOBAL_CLEANUP_PACKAGES" ] || exit 0

6 7
list="$(rpmquery -a --qf='%{NAME}\n' $GLOBAL_CLEANUP_PACKAGES)"
[ -z "$list" ] || apt-get remove -f -y  -- $list