├── .gitattributes ├── .gitignore ├── Makefile ├── README.md ├── luasrc ├── controller │ └── autoipsetadder.lua ├── model │ └── cbi │ │ └── autoipsetadder.lua └── view │ └── autoipsetadder │ ├── check.htm │ └── status.htm └── root ├── etc ├── config │ └── autoipsetadder ├── init.d │ └── autoipsetadder └── uci-defaults │ └── 40_luci-autoipsetadder └── usr └── bin └── autoipsetadder ├── autoaddlist.sh ├── debugip.sh ├── tailto.sh └── testip.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.bak 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/README.md -------------------------------------------------------------------------------- /luasrc/controller/autoipsetadder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/luasrc/controller/autoipsetadder.lua -------------------------------------------------------------------------------- /luasrc/model/cbi/autoipsetadder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/luasrc/model/cbi/autoipsetadder.lua -------------------------------------------------------------------------------- /luasrc/view/autoipsetadder/check.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/luasrc/view/autoipsetadder/check.htm -------------------------------------------------------------------------------- /luasrc/view/autoipsetadder/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/luasrc/view/autoipsetadder/status.htm -------------------------------------------------------------------------------- /root/etc/config/autoipsetadder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/root/etc/config/autoipsetadder -------------------------------------------------------------------------------- /root/etc/init.d/autoipsetadder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/root/etc/init.d/autoipsetadder -------------------------------------------------------------------------------- /root/etc/uci-defaults/40_luci-autoipsetadder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/root/etc/uci-defaults/40_luci-autoipsetadder -------------------------------------------------------------------------------- /root/usr/bin/autoipsetadder/autoaddlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/root/usr/bin/autoipsetadder/autoaddlist.sh -------------------------------------------------------------------------------- /root/usr/bin/autoipsetadder/debugip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/root/usr/bin/autoipsetadder/debugip.sh -------------------------------------------------------------------------------- /root/usr/bin/autoipsetadder/tailto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/root/usr/bin/autoipsetadder/tailto.sh -------------------------------------------------------------------------------- /root/usr/bin/autoipsetadder/testip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rufengsuixing/luci-app-autoipsetadder/HEAD/root/usr/bin/autoipsetadder/testip.sh --------------------------------------------------------------------------------