diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-08-17 11:57:30 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-08-17 11:57:30 +0000 |
commit | 77daa2d2a662f693dd29d2592e3d36f1e3415b4c (patch) | |
tree | d0979be2e236222a95adbce376709bcffbbc2a98 /main/busybox/busybox.trigger | |
parent | 299cbbf9570c47636c7b122b59e8791253f77898 (diff) | |
download | aports-77daa2d2a662f693dd29d2592e3d36f1e3415b4c.tar.bz2 aports-77daa2d2a662f693dd29d2592e3d36f1e3415b4c.tar.xz |
Revert "main/busybox: use triggers in apk-tools"
We need the .post-install and .post-upgrade scripts early, otherwise
we break installscripts for all packages installed after busybox.
This reverts commit 13f7afcb44ab3fc34ab250aa7df135e1cb684cac.
Diffstat (limited to 'main/busybox/busybox.trigger')
-rw-r--r-- | main/busybox/busybox.trigger | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/main/busybox/busybox.trigger b/main/busybox/busybox.trigger deleted file mode 100644 index 8bdef2ba56..0000000000 --- a/main/busybox/busybox.trigger +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -do_bb_install= - -for i in "$@"; do - case "$i" in - /lib/modules/*) /bin/busybox depmod ${i#/lib/modules/};; - *) do_bb_install=yes;; - esac -done - -if [ -n "$do_bb_install" ]; then - /bin/busybox --install -s -fi - |