aports/main/busybox/busybox-extras.pre-deinstall
Sertonix 4cf61dc5e0 main/busybox: remove 'cd /' from scripts
*.{pre,post}-{install,upgrade,deinstall} scripts are run at the root
directory.
2024-01-16 17:10:30 +00:00

8 lines
195 B
Bash

#!/bin/sh
# Remove all symlinks to busybox-extras
for link in $(busybox-extras --list-full); do
if [ -L "$link" ] && [ "$(readlink $link)" = "/bin/busybox-extras" ]; then
rm "$link"
fi
done