Hi, This patch add a new luci-application for the watchcat package (in feeds/packages/utils). Chris
7 lines
186 B
Bash
7 lines
186 B
Bash
#!/bin/sh
|
|
me="watchcat"
|
|
[ -n "${IPKG_INSTROOT}" ] || {
|
|
( . /etc/uci-defaults/luci-$me ) && rm -f /etc/uci-defaults/luci-$me
|
|
/etc/init.d/$me enabled || /etc/init.d/$me enable
|
|
exit 0
|
|
}
|