mirror of
https://github.com/vdsm/virtual-dsm.git
synced 2025-02-24 13:30:02 +08:00
* feat: Cache location * feat: Cache location * feat: Add support URL * feat: Cache location * fix: Remove files * feat: Reset filesystem * fix: Exit when PID is missing * fix: Counter file * fix: Check flags * docs: Readme * feat: Cleanup files * fix: Check flags * fix: Check flags * fix: Initialization * fix: Initalization * fix: Initialization * fix: Cleanup temp * fix: Initialize system * feat: Config system * feat: Configure system * fix: Variables * fix: Variables * fix: Error handling * style: Comments * fix: Returnvalue * fix: Returnvalue * fix: Returnvalue * fix: Returnvalue * fix: Returnvalue * docs: Multi-disk support * feat: Use cached location * fix: Swap order
67 lines
1.4 KiB
Bash
67 lines
1.4 KiB
Bash
#!/usr/bin/env bash
|
||
set -Eeuo pipefail
|
||
|
||
info () { echo -e >&2 "\E[1;34m❯\E[1;36m $1\E[0m" ; }
|
||
error () { echo -e >&2 "\E[1;31m❯ ERROR: $1\E[0m" ; }
|
||
|
||
file="/run/dsm.url"
|
||
|
||
while [ ! -f "$file" ]
|
||
do
|
||
|
||
sleep 3
|
||
[ -f "$file" ] && continue
|
||
|
||
# Retrieve IP from guest VM
|
||
|
||
set +e
|
||
RESPONSE=$(curl -s -m 16 -S http://127.0.0.1:2210/read?command=10 2>&1)
|
||
set -e
|
||
|
||
if [[ ! "${RESPONSE}" =~ "\"success\"" ]] ; then
|
||
error "Failed to connect to guest: $RESPONSE" && continue
|
||
fi
|
||
|
||
# Retrieve the HTTP port number
|
||
if [[ ! "${RESPONSE}" =~ "\"http_port\"" ]] ; then
|
||
error "Failed to parse response from guest: $RESPONSE" && continue
|
||
fi
|
||
|
||
rest=${RESPONSE#*http_port}
|
||
rest=${rest#*:}
|
||
rest=${rest%%,*}
|
||
PORT=${rest%%\"*}
|
||
|
||
[ -z "${PORT}" ] && continue
|
||
|
||
# Retrieve the IP address
|
||
if [[ ! "${RESPONSE}" =~ "eth0" ]] ; then
|
||
error "Failed to parse response from guest: $RESPONSE" && continue
|
||
fi
|
||
|
||
rest=${RESPONSE#*eth0}
|
||
rest=${rest#*ip}
|
||
rest=${rest#*:}
|
||
rest=${rest#*\"}
|
||
IP=${rest%%\"*}
|
||
|
||
[ -z "${IP}" ] && continue
|
||
|
||
echo "${IP}:${PORT}" > $file
|
||
|
||
done
|
||
|
||
LOCATION=$(cat "$file")
|
||
|
||
if [[ "$LOCATION" == "20.20"* ]]; then
|
||
MSG="port ${LOCATION##*:}"
|
||
else
|
||
MSG="http://${LOCATION}"
|
||
fi
|
||
|
||
echo "" >&2
|
||
info "--------------------------------------------------------"
|
||
info " You can now login to DSM at ${MSG}"
|
||
info "--------------------------------------------------------"
|
||
echo "" >&2
|