diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-11-04 20:19:25 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-11-04 20:19:25 +0000 |
commit | 3a006a17a5f8ce61ea6ea3fdd02f34b4c68f2116 (patch) | |
tree | 8255cb109bc4d27ba7d60c75fe52501c75dc01a2 | |
parent | d1796b2991d347d78cb02d95f09bc4c157b444cc (diff) |
* luci/modules/admin-core: add postinstall to enable init scripts when installed with opkg
-rwxr-xr-x | modules/admin-core/ipkg/postinst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/admin-core/ipkg/postinst b/modules/admin-core/ipkg/postinst new file mode 100755 index 000000000..c2f3b5f18 --- /dev/null +++ b/modules/admin-core/ipkg/postinst @@ -0,0 +1,6 @@ +#!/bin/sh + +/etc/init.d/luci_fixtime enable +/etc/init.d/luci_ethers enable +/etc/init.d/luci_hosts enable + |