├── Makefile ├── README.md ├── luasrc ├── controller │ └── easymesh.lua └── model │ └── cbi │ └── easymesh.lua ├── po ├── zh-cn │ └── easymesh.po └── zh_Hans └── root ├── etc ├── config │ └── easymesh ├── init.d │ └── easymesh └── uci-defaults │ └── luci-easymesh └── usr └── share └── rpcd └── acl.d └── luci-app-easymesh.json /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theosoft-git/luci-app-easymesh/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theosoft-git/luci-app-easymesh/HEAD/README.md -------------------------------------------------------------------------------- /luasrc/controller/easymesh.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theosoft-git/luci-app-easymesh/HEAD/luasrc/controller/easymesh.lua -------------------------------------------------------------------------------- /luasrc/model/cbi/easymesh.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theosoft-git/luci-app-easymesh/HEAD/luasrc/model/cbi/easymesh.lua -------------------------------------------------------------------------------- /po/zh-cn/easymesh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theosoft-git/luci-app-easymesh/HEAD/po/zh-cn/easymesh.po -------------------------------------------------------------------------------- /po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /root/etc/config/easymesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theosoft-git/luci-app-easymesh/HEAD/root/etc/config/easymesh -------------------------------------------------------------------------------- /root/etc/init.d/easymesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theosoft-git/luci-app-easymesh/HEAD/root/etc/init.d/easymesh -------------------------------------------------------------------------------- /root/etc/uci-defaults/luci-easymesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theosoft-git/luci-app-easymesh/HEAD/root/etc/uci-defaults/luci-easymesh -------------------------------------------------------------------------------- /root/usr/share/rpcd/acl.d/luci-app-easymesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theosoft-git/luci-app-easymesh/HEAD/root/usr/share/rpcd/acl.d/luci-app-easymesh.json --------------------------------------------------------------------------------