mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-01-13 01:17:23 +03:00
10 lines
243 B
Bash
Executable file
10 lines
243 B
Bash
Executable file
#!/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
|
|
xdg-open http://localhost:3000
|
|
else
|
|
xdg-open http://localhost:$bind_port
|
|
fi
|
|
|