diff --git a/Dockerfile b/Dockerfile index 47f6cb4..7de23ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -62,7 +62,7 @@ LABEL org.opencontainers.image.title="Virtual DSM" LABEL org.opencontainers.image.created=${DATE_ARG} LABEL org.opencontainers.image.revision=${BUILD_ARG} LABEL org.opencontainers.image.version=${VERSION_ARG} -LABEL org.opencontainers.image.source="https://github.com/kroese/virtual-dsm/" +LABEL org.opencontainers.image.source="https://github.com/vdsm/virtual-dsm/" LABEL org.opencontainers.image.url="https://hub.docker.com/r/kroese/virtual-dsm/" LABEL org.opencontainers.image.description="Virtual DSM in a docker container" diff --git a/agent/agent.sh b/agent/agent.sh index 133468b..e3208fe 100644 --- a/agent/agent.sh +++ b/agent/agent.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -u -VERSION="7" +VERSION="8" HEADER="VirtualDSM Agent" # Functions @@ -38,7 +38,7 @@ function downloadUpdate { # Auto update the agent - URL="https://raw.githubusercontent.com/kroese/virtual-dsm/master/agent/agent.sh" + URL="https://raw.githubusercontent.com/vdsm/virtual-dsm/master/agent/agent.sh" remote_size=$(curl -sIk -m 4 "${URL}" | grep -i "content-length:" | tr -d " \t" | cut -d ':' -f 2) remote_size=${remote_size//$'\r'} @@ -100,6 +100,8 @@ function installPackages { trap finish SIGINT SIGTERM ts=$(date +%s%N) + +echo "" echo "❯ Started $HEADER v$VERSION..." checkNMI diff --git a/agent/service.sh b/agent/service.sh index 87ae7c4..2f1c720 100644 --- a/agent/service.sh +++ b/agent/service.sh @@ -28,7 +28,7 @@ start() { if [ ! -f "$SCRIPT" ]; then - URL="https://raw.githubusercontent.com/kroese/virtual-dsm/master/agent/agent.sh" + URL="https://raw.githubusercontent.com/vdsm/virtual-dsm/master/agent/agent.sh" if ! curl -sfk -m 10 -o "${SCRIPT}" "${URL}"; then error 'Failed to download agent script.' > /dev/ttyS0 diff --git a/readme.md b/readme.md index 158e11b..e145bbe 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@