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 exit 1
fi fi
for i in $PKG_LIST 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' ' ')"
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}"
if [ ! -z "$INSTALL_LIST" ];then 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" echo -e "These packages will be installed: \e[2m$INSTALL_LIST\e[22m"
output="$(sudo apt-get install -y $INSTALL_LIST 2>&1)" output="$(sudo apt-get install -y $INSTALL_LIST 2>&1)"
exitcode=$? exitcode=$?
echo "Output was: ${output}EOO"
errors="$(echo "$output" | grep '^[(W)|(E)|(Err]:')" errors="$(echo "$output" | grep '^[(W)|(E)|(Err]:')"
if [ $exitcode != 0 ] || [ ! -z "$errors" ];then if [ $exitcode != 0 ] || [ ! -z "$errors" ];then
echo -e "\e[91mFailed to install the packages!\e[39m" echo -e "\e[91mFailed to install the packages!\e[39m"
@ -76,14 +72,16 @@ if [ ! -z "$INSTALL_LIST" ];then
exit 1 exit 1
fi fi
#re-check package list. This time it should be blank. #re-check package list. This time it should be blank.
INSTALL_LIST='' #INSTALL_LIST=''
for i in $PKG_LIST #for i in $PKG_LIST
do #do
PKG_OK="$(dpkg-query -W --showformat='${Status}\n' "$i" 2>/dev/null | grep "install ok installed")" # PKG_OK="$(dpkg-query -W --showformat='${Status}\n' "$i" 2>/dev/null | grep "install ok installed")"
if [ "" == "$PKG_OK" ]; then # if [ "" == "$PKG_OK" ]; then
INSTALL_LIST="${INSTALL_LIST} ${i}" #add package to install list # INSTALL_LIST="${INSTALL_LIST} ${i}" #add package to install list
fi # fi
done #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 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" 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 exit 0
fi 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=$? exitcode=$?
errors="$(echo "$output" | grep '^[(W)|(E)|(Err]:')" 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}') 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 fi
#ensure all packages are really purged #ensure all packages are really purged
INSTALL_LIST='' 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' ' ')"
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
#ensure all packages are really purged if [ ! -z "$PURGE_LIST" ];then
INSTALL_LIST='' error "APT did not exit with an error, but these packages are still installed somehow: $PURGE_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"
else else
echo -e "\e[32mAll packages were purged succesfully.\e[39m" echo -e "\e[32mAll packages were purged succesfully.\e[39m"
gio trash "${DIRECTORY}/data/installed-packages/${PRG}" gio trash "${DIRECTORY}/data/installed-packages/${PRG}"

Loading…
Cancel
Save