scripts/ts.sh

84 lines
1.9 KiB
Bash
Raw Normal View History

2024-10-14 12:04:47 +11:00
#!/bin/bash
# Usage: ts [list|en|en {node}]
# List: Lists all nodes
# EN: Exit node (clear)
# EN {node}: Use node
if [ "$#" -eq 0 ]; then
echo "Usage: ts [list|en|en {node}]"
echo "List: Lists all nodes"
echo "EN: Exit node (clear)"
echo "EN {node}: Use node"
2024-10-14 20:19:00 +11:00
echo "Short: List info short"
2024-10-14 12:04:47 +11:00
exit 1
fi
if [ "$1" = "list" ]; then
tailscale status
exit 0
fi
if [ "$1" = "en" ]; then
if [ "$#" -eq 1 ]; then
echo "Clearing exit node"
tailscale set --exit-node=
exit 0
fi
2024-10-14 20:19:00 +11:00
if [ "$2" = "toggle" ]; then
output=$(tailscale status | grep "; exit node;")
hostname=$(echo "$output" | awk '{print $2}')
# Check if node is exit node
if [ -z "$hostname" ]; then
tailscale set --exit-node=docker01
else
tailscale set --exit-node=
fi
exit 0
fi
2024-10-14 12:04:47 +11:00
echo "Enabling node $2"
tailscale set --exit-node="$2"
exit 0
fi
2024-10-14 20:19:00 +11:00
if [ "$1" = "short" ]; then
# Check if a third arg is sent
if [ -z "$2" ]; then
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
BLUE='\033[0;34m'
NC='\033[0m' # No Color
else
RED='%{F#ff0000}'
GREEN='%{F#ff60d090}'
YELLOW='%{F#ffff00}'
BLUE='%{F#0000ff}'
NC='%{F-}'
fi
# Check if connected
output=$(tailscale status)
if [[ "$output" == *"stopped"* ]]; then
echo -e "${RED}󰕥${NC}"
exit 0
fi
output=$(tailscale status | grep "; exit node;")
hostname=$(echo "$output" | awk '{print $2}')
# Check if node is exit node
if [ -z "$hostname" ]; then
echo -e "${GREEN}󰕥${NC}"
exit 0
fi
echo -e "${BLUE}󰕥${NC} $hostname"
exit 0
fi
2024-10-14 12:04:47 +11:00
echo "Usage: ts [list|en|en {node}]"
echo "List: Lists all nodes"
echo "EN: Exit node (clear)"
echo "EN {node}: Use node"
2024-10-14 20:19:00 +11:00
echo "Short: List info short"
2024-10-14 12:04:47 +11:00
exit 1