Created
March 15, 2019 14:47
-
-
Save say2joe/3f2866ea70eef89409a714fcd0d55cd6 to your computer and use it in GitHub Desktop.
OPkg: clean up from bad pkg install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#takes one argument/parameter: the name of the package which didn't install correctly and should be removed along with its dependencies | |
#example: ./opkgremovepartlyinstalledpackage.sh pulseaudio-daemon | |
#get list of all packages that would be installed along with package x | |
PACKAGES=`opkg --force-space --noaction install $1 | grep "http:" | cut -f 2 -d ' ' | sed 's/\.$//'` | |
opkg update | |
for i in $PACKAGES | |
do | |
LIST=`wget -qO- $i | tar -Oxz ./data.tar.gz | tar -tz | sort -r | sed 's/^./\/overlay\/upper/'` | |
for f in $LIST | |
do | |
if [ -f $f ] | |
then | |
echo "Removing file $f" | |
rm -f $f | |
fi | |
if [ -d $f ] | |
then | |
echo "Try to remove directory $f (will only work on empty directories)" | |
rmdir $f | |
fi | |
done | |
done | |
echo "You may need to reboot for the free space to become visible" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment