8 lines
253 B
Bash
Executable file
8 lines
253 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ -n "${IPKG_INSTROOT}" ] || {
|
|
/etc/init.d/luci_fixtime enabled || /etc/init.d/luci_fixtime enable
|
|
/etc/init.d/luci_ethers enabled || /etc/init.d/luci_ethers enable
|
|
/etc/init.d/luci_hosts enabled || /etc/init.d/luci_hosts enable
|
|
exit 0
|
|
}
|