diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-11-05 22:06:27 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-11-05 22:06:27 +0000 |
commit | 7651fd78f055c0f6373027d5dae1f2ce9e8db4c3 (patch) | |
tree | 7e33d28dcade2e336b65e00a2718be662de69e5d /contrib/package | |
parent | 9f28871ffcd8a59bc372059fe7db30eddba376ed (diff) |
* luci: fix postinstall scripts
Diffstat (limited to 'contrib/package')
-rwxr-xr-x | contrib/package/olsrd-luci/ipkg/postinst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/package/olsrd-luci/ipkg/postinst b/contrib/package/olsrd-luci/ipkg/postinst index 71986fe93..288d7e40d 100755 --- a/contrib/package/olsrd-luci/ipkg/postinst +++ b/contrib/package/olsrd-luci/ipkg/postinst @@ -1,3 +1,5 @@ #!/bin/sh -/etc/init.d/olsrd enable +[ -n "${IPKG_INSTROOT}" ] || { + /etc/init.d/olsrd enable +} |