├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── files ├── autossh.config ├── autossh.hotplug ├── autossh.init ├── autossh.uci ├── autossh_cbi.lua └── autossh_controller.lua /.gitignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa65535/openwrt-autossh/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa65535/openwrt-autossh/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa65535/openwrt-autossh/HEAD/README.md -------------------------------------------------------------------------------- /files/autossh.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa65535/openwrt-autossh/HEAD/files/autossh.config -------------------------------------------------------------------------------- /files/autossh.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa65535/openwrt-autossh/HEAD/files/autossh.hotplug -------------------------------------------------------------------------------- /files/autossh.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa65535/openwrt-autossh/HEAD/files/autossh.init -------------------------------------------------------------------------------- /files/autossh.uci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa65535/openwrt-autossh/HEAD/files/autossh.uci -------------------------------------------------------------------------------- /files/autossh_cbi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa65535/openwrt-autossh/HEAD/files/autossh_cbi.lua -------------------------------------------------------------------------------- /files/autossh_controller.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aa65535/openwrt-autossh/HEAD/files/autossh_controller.lua --------------------------------------------------------------------------------