summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-statistics
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-statistics
parent08fc73b8a6bb87c4094188fb60ebaed88c82d4c7 (diff)
prevent package upgrade failures caused by sloppy postinstalls
Diffstat (limited to 'applications/luci-statistics')
-rwxr-xr-xapplications/luci-statistics/ipkg/postinst6
1 files changed, 2 insertions, 4 deletions
diff --git a/applications/luci-statistics/ipkg/postinst b/applications/luci-statistics/ipkg/postinst
index e69ae4726..8d52ec2d3 100755
--- a/applications/luci-statistics/ipkg/postinst
+++ b/applications/luci-statistics/ipkg/postinst
@@ -2,8 +2,6 @@
[ -n "${IPKG_INSTROOT}" ] || {
( . /etc/uci-defaults/luci-statistics ) && rm -f /etc/uci-defaults/luci-statistics
- /etc/init.d/luci_statistics enable
- /etc/init.d/collectd enable
-
- exit 0
+ /etc/init.d/luci_statistics enabled || /etc/init.d/luci_statistics enable
+ /etc/init.d/collectd enabled || /etc/init.d/collectd enable
}