diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-08-24 09:10:56 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-08-24 09:10:56 +0000 |
commit | 060598965503ba0f0a1e818f0251bff2e01cac1d (patch) | |
tree | cc11b617fed610070c0acd2ac2b61b0b87824e1f /main/busybox/busybox.post-upgrade | |
parent | 5245d5bdffdee245ab1bc626b5fc73783d86c8d5 (diff) | |
download | aports-060598965503ba0f0a1e818f0251bff2e01cac1d.tar.bz2 aports-060598965503ba0f0a1e818f0251bff2e01cac1d.tar.xz |
main/busybox: remove old /bin/install symlink when upgrading
We have moved /bin/install to /usr/bin/install. The old symlink
should go away when upgrading and trigger script will not do it.
So we do it in post-upgrade
Diffstat (limited to 'main/busybox/busybox.post-upgrade')
-rw-r--r--[l---------] | main/busybox/busybox.post-upgrade | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/main/busybox/busybox.post-upgrade b/main/busybox/busybox.post-upgrade index 1f4b450e5e..c55561cc11 120000..100644 --- a/main/busybox/busybox.post-upgrade +++ b/main/busybox/busybox.post-upgrade @@ -1 +1,9 @@ -busybox.post-install
\ No newline at end of file +#!/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 + +# We need the symlinks early +exec /bin/busybox --install -s |