summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-splash/ipkg
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-12-09 00:03:08 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-12-09 00:03:08 +0000
commitf7a3e34955fdcf9678fd0a5e18c8b06b6fc6b244 (patch)
treebfd1eb5781003110187545a1ea57d849fe0eb987 /applications/luci-splash/ipkg
parent08fc73b8a6bb87c4094188fb60ebaed88c82d4c7 (diff)
prevent package upgrade failures caused by sloppy postinstalls
Diffstat (limited to 'applications/luci-splash/ipkg')
-rwxr-xr-xapplications/luci-splash/ipkg/postinst4
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
}