mirror of
https://github.com/openwrt/packages.git
synced 2026-06-19 12:20:18 +04:00
551bb8b718
Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
9 lines
158 B
Bash
9 lines
158 B
Bash
#!/bin/sh
|
|
if command -v tailscale; then
|
|
tailscale version | grep "$2" || exit 1
|
|
fi
|
|
|
|
if command -v tailscaled; then
|
|
tailscaled -version | grep "$2"
|
|
fi
|