diff options
-rwxr-xr-x | applications/luci-splash/ipkg/postinst | 2 | ||||
-rwxr-xr-x | applications/luci-statistics/ipkg/postinst | 2 | ||||
-rwxr-xr-x | contrib/package/olsrd-luci/ipkg/postinst | 2 | ||||
-rwxr-xr-x | modules/admin-core/ipkg/postinst | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/applications/luci-splash/ipkg/postinst b/applications/luci-splash/ipkg/postinst index 1e4d1793d..0a4ca74cb 100755 --- a/applications/luci-splash/ipkg/postinst +++ b/applications/luci-splash/ipkg/postinst @@ -2,4 +2,6 @@ [ -n "${IPKG_INSTROOT}" ] || { /etc/init.d/luci_splash enable + + exit 0 } diff --git a/applications/luci-statistics/ipkg/postinst b/applications/luci-statistics/ipkg/postinst index 536f4bb28..e69ae4726 100755 --- a/applications/luci-statistics/ipkg/postinst +++ b/applications/luci-statistics/ipkg/postinst @@ -4,4 +4,6 @@ /etc/init.d/luci_statistics enable /etc/init.d/collectd enable + + exit 0 } diff --git a/contrib/package/olsrd-luci/ipkg/postinst b/contrib/package/olsrd-luci/ipkg/postinst index 288d7e40d..cd38fcfaf 100755 --- a/contrib/package/olsrd-luci/ipkg/postinst +++ b/contrib/package/olsrd-luci/ipkg/postinst @@ -2,4 +2,6 @@ [ -n "${IPKG_INSTROOT}" ] || { /etc/init.d/olsrd enable + + exit 0 } diff --git a/modules/admin-core/ipkg/postinst b/modules/admin-core/ipkg/postinst index 90138ae76..a849819c6 100755 --- a/modules/admin-core/ipkg/postinst +++ b/modules/admin-core/ipkg/postinst @@ -4,4 +4,6 @@ /etc/init.d/luci_fixtime enable /etc/init.d/luci_ethers enable /etc/init.d/luci_hosts enable + + exit 0 } |