mirror of https://github.com/hak5/openwrt.git
base-files: default_postinst: propagate the real postinst return code
Using the postinst script for sanity checks and expecting opkg to fail if the postinst didn't return 0 was possible in Barrier Breaker, propagate the real postinst return code through default_postinst to restore this behaviour. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net> SVN-Revision: 46653lede-17.01
parent
e5488123e6
commit
e83643d31c
|
@ -174,7 +174,8 @@ default_prerm() {
|
||||||
}
|
}
|
||||||
|
|
||||||
default_postinst() {
|
default_postinst() {
|
||||||
local pkgname rusers
|
local pkgname rusers ret
|
||||||
|
ret=0
|
||||||
pkgname=$(basename ${1%.*})
|
pkgname=$(basename ${1%.*})
|
||||||
rusers=$(grep "Require-User:" ${IPKG_INSTROOT}/usr/lib/opkg/info/${pkgname}.control)
|
rusers=$(grep "Require-User:" ${IPKG_INSTROOT}/usr/lib/opkg/info/${pkgname}.control)
|
||||||
[ -n "$rusers" ] && {
|
[ -n "$rusers" ] && {
|
||||||
|
@ -215,7 +216,10 @@ default_postinst() {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
[ -f ${IPKG_INSTROOT}/usr/lib/opkg/info/${pkgname}.postinst-pkg ] && ( . ${IPKG_INSTROOT}/usr/lib/opkg/info/${pkgname}.postinst-pkg )
|
if [ -f ${IPKG_INSTROOT}/usr/lib/opkg/info/${pkgname}.postinst-pkg ]; then
|
||||||
|
( . ${IPKG_INSTROOT}/usr/lib/opkg/info/${pkgname}.postinst-pkg )
|
||||||
|
ret=$?
|
||||||
|
fi
|
||||||
[ -n "${IPKG_INSTROOT}" ] || rm -f /tmp/luci-indexcache 2>/dev/null
|
[ -n "${IPKG_INSTROOT}" ] || rm -f /tmp/luci-indexcache 2>/dev/null
|
||||||
|
|
||||||
[ "$PKG_UPGRADE" = "1" ] || for i in `cat ${IPKG_INSTROOT}/usr/lib/opkg/info/${pkgname}.list | grep "^/etc/init.d/"`; do
|
[ "$PKG_UPGRADE" = "1" ] || for i in `cat ${IPKG_INSTROOT}/usr/lib/opkg/info/${pkgname}.list | grep "^/etc/init.d/"`; do
|
||||||
|
@ -225,7 +229,7 @@ default_postinst() {
|
||||||
$i start
|
$i start
|
||||||
}
|
}
|
||||||
done
|
done
|
||||||
return 0
|
return $ret
|
||||||
}
|
}
|
||||||
|
|
||||||
include() {
|
include() {
|
||||||
|
|
Loading…
Reference in New Issue