diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-12-09 00:03:08 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-12-09 00:03:08 +0000 |
commit | f7a3e34955fdcf9678fd0a5e18c8b06b6fc6b244 (patch) | |
tree | bfd1eb5781003110187545a1ea57d849fe0eb987 /applications/luci-splash/ipkg | |
parent | 08fc73b8a6bb87c4094188fb60ebaed88c82d4c7 (diff) |
prevent package upgrade failures caused by sloppy postinstalls
Diffstat (limited to 'applications/luci-splash/ipkg')
-rwxr-xr-x | applications/luci-splash/ipkg/postinst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/applications/luci-splash/ipkg/postinst b/applications/luci-splash/ipkg/postinst index 0a4ca74cb..f898ad162 100755 --- a/applications/luci-splash/ipkg/postinst +++ b/applications/luci-splash/ipkg/postinst @@ -1,7 +1,5 @@ #!/bin/sh [ -n "${IPKG_INSTROOT}" ] || { - /etc/init.d/luci_splash enable - - exit 0 + /etc/init.d/luci_splash enabled || /etc/init.d/luci_splash enable } |