Skip to content

VELS_WEB: Discover $server_ip robust to output format changes #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: autosub_devel
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion VELS_WEB/daemon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ port=8000 #default port
password="notSecure" #default password

VELS_WEB_PATH=$HOME/web2py/applications/VELS_WEB
server_ip=$(ip addr | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1')
server_ip=$(ip -json -family inet addr show scope global | python3 -c "import sys, json; print(json.load(sys.stdin)[0]['addr_info'][0]['local'])")

if [ -n $2 ]; #port given
then
port=$2
Expand Down