improve apt package detection

added regex support, package nickname support, now it should work in
100% of cases.
pull/20/head
Botspot 5 years ago
parent 4d9059f831
commit 7fbacea604

@ -53,22 +53,18 @@ if [ $exitcode != 0 ] || [ ! -z "$errors" ];then
exit 1
fi
for i in $PKG_LIST
do
PKG_OK="$(dpkg-query -W --showformat='${Status}\n' "$i" 2>/dev/null |grep "install ok installed")"
if [ "" == "$PKG_OK" ]; then
INSTALL_LIST="${INSTALL_LIST} ${i}" #add package to install list
fi
done
#save that list of installed packages in the program directory for future removal
mkdir -p "${DIRECTORY}/data/installed-packages"
echo "$INSTALL_LIST" >> "${DIRECTORY}/data/installed-packages/${PRG}"
INSTALL_LIST="$(sudo apt-get install --dry-run $PKG_LIST | sed -n '/The following NEW packages/,/to remove/p' | sed -e '2,$!d' -e '$d' | tr -d '*' | tr '\n' ' ')"
if [ ! -z "$INSTALL_LIST" ];then
#save that list of installed packages in the program directory for future removal
mkdir -p "${DIRECTORY}/data/installed-packages"
echo "$INSTALL_LIST" >> "${DIRECTORY}/data/installed-packages/${PRG}"
echo -e "These packages will be installed: \e[2m$INSTALL_LIST\e[22m"
output="$(sudo apt-get install -y $INSTALL_LIST 2>&1)"
exitcode=$?
echo "Output was: ${output}EOO"
errors="$(echo "$output" | grep '^[(W)|(E)|(Err]:')"
if [ $exitcode != 0 ] || [ ! -z "$errors" ];then
echo -e "\e[91mFailed to install the packages!\e[39m"
@ -76,14 +72,16 @@ if [ ! -z "$INSTALL_LIST" ];then
exit 1
fi
#re-check package list. This time it should be blank.
INSTALL_LIST=''
for i in $PKG_LIST
do
PKG_OK="$(dpkg-query -W --showformat='${Status}\n' "$i" 2>/dev/null | grep "install ok installed")"
if [ "" == "$PKG_OK" ]; then
INSTALL_LIST="${INSTALL_LIST} ${i}" #add package to install list
fi
done
#INSTALL_LIST=''
#for i in $PKG_LIST
#do
# PKG_OK="$(dpkg-query -W --showformat='${Status}\n' "$i" 2>/dev/null | grep "install ok installed")"
# if [ "" == "$PKG_OK" ]; then
# INSTALL_LIST="${INSTALL_LIST} ${i}" #add package to install list
# fi
#done
INSTALL_LIST="$(sudo apt-get install --dry-run $PKG_LIST | sed -n '/The following packages/,/to remove/p' | sed -e '2,$!d' -e '$d' | tr -d '*' | tr '\n' ' ')"
if [ ! -z $INSTALL_LIST ];then
echo -e "\e[91mAPT did not exit with an error, but these packages failed to install somehow: $INSTALL_LIST\e[39m"

@ -39,7 +39,10 @@ if [ -z "${DIRECTORY}/data/installed-packages/${PRG}" ];then
exit 0
fi
output="$(sudo apt purge -y $PKG_LIST 2>&1)"
PURGE_LIST="$(sudo apt-get purge --dry-run $PKG_LIST | sed -n '/The following packages/,/to remove/p' | sed -e '2,$!d' -e '$d' | tr -d '*' | tr '\n' ' ')"
echo "These packages will be purged: $PURGE_LIST"
output="$(sudo apt purge -y $PURGE_LIST 2>&1)"
exitcode=$?
errors="$(echo "$output" | grep '^[(W)|(E)|(Err]:')"
sudo apt autoremove -y && sudo apt clean && sudo apt-get purge -y $(dpkg -l | grep '^rc' | awk '{print $2}')
@ -50,27 +53,10 @@ if [ $exitcode != 0 ] || [ ! -z "$errors" ];then
fi
#ensure all packages are really purged
INSTALL_LIST=''
for i in $PKG_LIST
do
PKG_OK="$(dpkg-query -W --showformat='${Status}\n' "$i" 2>/dev/null |grep "install ok installed")"
if [ "" != "$PKG_OK" ]; then
INSTALL_LIST="${INSTALL_LIST} ${i}" #add package to install list
fi
done
sudo apt purge -y $INSTALL_LIST 2>/dev/null
PURGE_LIST="$(sudo apt-get purge --dry-run $PKG_LIST | sed -n '/The following packages/,/to remove/p' | sed -e '2,$!d' -e '$d' | tr -d '*' | tr '\n' ' ')"
#ensure all packages are really purged
INSTALL_LIST=''
for i in $PKG_LIST
do
PKG_OK="$(dpkg-query -W --showformat='${Status}\n' "$i" 2>/dev/null |grep "install ok installed")"
if [ "" != "$PKG_OK" ]; then
INSTALL_LIST="${INSTALL_LIST} ${i}" #add package to install list
fi
done
if [ ! -z "$INSTALL_LIST" ];then
error "\e[91mAPT did not exit with an error, but these packages are still installed somehow: $INSTALL_LIST\e[39m"
if [ ! -z "$PURGE_LIST" ];then
error "APT did not exit with an error, but these packages are still installed somehow: $PURGE_LIST"
else
echo -e "\e[32mAll packages were purged succesfully.\e[39m"
gio trash "${DIRECTORY}/data/installed-packages/${PRG}"

Loading…
Cancel
Save