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

13 lines
295 B
Bash
Raw Normal View History

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