diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-01-04 08:00:36 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-01-04 08:02:40 +0000 |
commit | b60e57c4f819be22d4691d4a0feff7f2e4931cdd (patch) | |
tree | a778a33ef7f49d9a1bb8424863b758344ac6f3fb /main/busybox/busybox.post-upgrade | |
parent | dbf4b64186765adecfde1b8ce10fd628a8824a70 (diff) | |
download | aports-b60e57c4f819be22d4691d4a0feff7f2e4931cdd.tar.bz2 aports-b60e57c4f819be22d4691d4a0feff7f2e4931cdd.tar.xz |
main/busybox: remove relocated symlinks
Diffstat (limited to 'main/busybox/busybox.post-upgrade')
-rw-r--r-- | main/busybox/busybox.post-upgrade | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/main/busybox/busybox.post-upgrade b/main/busybox/busybox.post-upgrade index c55561cc1..268f22d40 100644 --- a/main/busybox/busybox.post-upgrade +++ b/main/busybox/busybox.post-upgrade @@ -1,9 +1,11 @@ #!/bin/sh -# /bin/install has moved to /usr/bin/install, but we need remove old link -if [ -L /bin/install ] && [ "$(readlink /bin/install)" = "/bin/busybox" ]; then - rm /bin/install -fi +# remove links that has been relocated +for link in /bin/install /bin/ip /bin/vi /usr/bin/lspci; do + if [ -L "$link" ] && [ "$(readlink $link)" = "/bin/busybox" ]; then + rm "$link" + fi +done # We need the symlinks early exec /bin/busybox --install -s |