From 255141304040dd1238e64e2b17de6e6b8ec80b7c Mon Sep 17 00:00:00 2001 From: Kroese Date: Thu, 19 Oct 2023 15:03:10 +0200 Subject: [PATCH 1/4] docs: Update location --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 158e11b..e145bbe 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@

Virtual DSM for Docker
- +
@@ -198,11 +198,11 @@ docker run -it --rm -p 5000:5000 --device=/dev/kvm --cap-add NET_ADMIN --stop-ti Only run this container on Synology hardware, any other use is not permitted by their EULA. The product names, logos, brands, and other trademarks referred to within this project are the property of their respective trademark holders. This project is not affiliated, sponsored, or endorsed by Synology, Inc. -[build_url]: https://github.com/kroese/virtual-dsm/ +[build_url]: https://github.com/vdsm/virtual-dsm/ [hub_url]: https://hub.docker.com/r/kroese/virtual-dsm [tag_url]: https://hub.docker.com/r/kroese/virtual-dsm/tags -[Build]: https://github.com/kroese/virtual-dsm/actions/workflows/build.yml/badge.svg +[Build]: https://github.com/vdsm/virtual-dsm/actions/workflows/build.yml/badge.svg [Size]: https://img.shields.io/docker/image-size/kroese/virtual-dsm/latest?color=066da5&label=size [Pulls]: https://img.shields.io/docker/pulls/kroese/virtual-dsm.svg?style=flat&label=pulls&logo=docker [Version]: https://img.shields.io/docker/v/kroese/virtual-dsm/latest?arch=amd64&sort=semver&color=066da5 From 1b75bd3c44c6be22985a5dbe4d2a5e6ef0b075c4 Mon Sep 17 00:00:00 2001 From: Kroese Date: Thu, 19 Oct 2023 15:05:20 +0200 Subject: [PATCH 2/4] docs: Update location --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From d5637e8da07039e3f6b7cd2eff6dd28ca0767908 Mon Sep 17 00:00:00 2001 From: Kroese Date: Thu, 19 Oct 2023 15:08:40 +0200 Subject: [PATCH 3/4] fix: Update location --- agent/agent.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 From d462c6d7a23d2112b3af8376d1f629c5c34b6fbd Mon Sep 17 00:00:00 2001 From: Kroese Date: Thu, 19 Oct 2023 15:09:37 +0200 Subject: [PATCH 4/4] fix: Update location --- agent/service.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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