AdGuardHome/scripts/snap/local/adguard-home-web.sh

11 lines
244 B
Bash
Raw Normal View History

2020-06-26 12:19:29 +01:00
#!/bin/bash
# Get admin tool port from configuration
bind_port=$(grep bind_port $SNAP_DATA/AdGuardHome.yaml | awk -F ' ' '{print $2}')
if [ -z "$bind_port" ]; then
2020-06-26 12:19:29 +01:00
xdg-open http://localhost:3000
else
xdg-open http://localhost:$bind_port
fi