├── .github └── workflows │ ├── Auto.yml │ └── tar.yaml ├── LICENSE ├── README.md ├── etc └── init.d │ └── tailscale ├── install.sh ├── old_install.sh ├── tailscale-openwrt.tgz ├── uninstall.sh └── usr └── bin ├── tailscale ├── tailscale_downloader └── tailscaled /.github/workflows/Auto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH3NGYZ/tailscale-openwrt/HEAD/.github/workflows/Auto.yml -------------------------------------------------------------------------------- /.github/workflows/tar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH3NGYZ/tailscale-openwrt/HEAD/.github/workflows/tar.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH3NGYZ/tailscale-openwrt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH3NGYZ/tailscale-openwrt/HEAD/README.md -------------------------------------------------------------------------------- /etc/init.d/tailscale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH3NGYZ/tailscale-openwrt/HEAD/etc/init.d/tailscale -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH3NGYZ/tailscale-openwrt/HEAD/install.sh -------------------------------------------------------------------------------- /old_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH3NGYZ/tailscale-openwrt/HEAD/old_install.sh -------------------------------------------------------------------------------- /tailscale-openwrt.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH3NGYZ/tailscale-openwrt/HEAD/tailscale-openwrt.tgz -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH3NGYZ/tailscale-openwrt/HEAD/uninstall.sh -------------------------------------------------------------------------------- /usr/bin/tailscale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH3NGYZ/tailscale-openwrt/HEAD/usr/bin/tailscale -------------------------------------------------------------------------------- /usr/bin/tailscale_downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH3NGYZ/tailscale-openwrt/HEAD/usr/bin/tailscale_downloader -------------------------------------------------------------------------------- /usr/bin/tailscaled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CH3NGYZ/tailscale-openwrt/HEAD/usr/bin/tailscaled --------------------------------------------------------------------------------