From cb09ad1b5f4a5feb88a22ea95a62b94d51b89c5d Mon Sep 17 00:00:00 2001
From: Sadie Powell <sadie@witchery.services>
Date: Mon, 2 Sep 2024 16:00:29 +0100
Subject: [PATCH] Update various links.

---
 .github/workflows/build-container.yml | 2 +-
 README.md                             | 8 ++++----
 bootstrap.sh                          | 2 +-
 conf/docker.motd                      | 2 +-
 conf/links.sh                         | 2 +-
 5 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml
index 00eae3c..684d4e5 100644
--- a/.github/workflows/build-container.yml
+++ b/.github/workflows/build-container.yml
@@ -12,7 +12,7 @@ jobs:
     env:
       DOCKER_REPO: inspircd/inspircd-docker
       GITHUB_BRANCH: master
-      GITHUB_REPO: inspircd/inspircd-docker
+      GITHUB_REPO: inspircd/docker
       INSP_VERSION: v3.17.1
     steps:
       -
diff --git a/README.md b/README.md
index 52f8089..a515008 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ The easiest way to run this image is using our bootstrap script.
 To use it run the following statement:
 
 ```console
-wget -qO- https://raw.githubusercontent.com/inspircd/inspircd-docker/master/bootstrap.sh | sh
+wget -qO- https://raw.githubusercontent.com/inspircd/docker/master/bootstrap.sh | sh
 ```
 
 The bootstrap script takes care of the fact that docker is installed and runs the image.
@@ -326,9 +326,9 @@ We provide information about features we remove in future.
 
 We document changes that possibly broken your setup and are no longer supported. Hopefully, we can provide useful information for debugging.
 
-* [`046bb02`](https://github.com/inspircd/inspircd-docker/commit/046bb028a700755ee9669b20c02057a947e2fe34) Update to InspIRCd 3.0 requires some config changes. If you run InspIRCd using docker-compose or by mounting a volume, make sure you update your config according to the [docs page](https://docs.inspircd.org/3/configuration-changes/).
+* [`046bb02`](https://github.com/inspircd/docker/commit/046bb028a700755ee9669b20c02057a947e2fe34) Update to InspIRCd 3.0 requires some config changes. If you run InspIRCd using docker-compose or by mounting a volume, make sure you update your config according to the [docs page](https://docs.inspircd.org/3/configuration-changes/).
 
-* [`cdba94f`](https://github.com/inspircd/inspircd-docker/commit/cdba94f6ae0c71ad37b3a88114a14ecb0c5177c1) `ADDPACKAGES` and `DELPACKAGES` are replaced by `BUILD_DEPENDENCIES` and `RUN_DEPENDENCIES`
+* [`cdba94f`](https://github.com/inspircd/docker/commit/cdba94f6ae0c71ad37b3a88114a14ecb0c5177c1) `ADDPACKAGES` and `DELPACKAGES` are replaced by `BUILD_DEPENDENCIES` and `RUN_DEPENDENCIES`
 
 # Additional information
 
@@ -354,7 +354,7 @@ Please see [the Docker installation documentation](https://docs.docker.com/insta
 
 ## Issues
 
-If you have any problems with or questions about this image, please contact us through a [GitHub issue](https://github.com/inspircd/inspircd-docker/issues).
+If you have any problems with or questions about this image, please contact us through a [GitHub issue](https://github.com/inspircd/docker/issues).
 
 You can also reach many of the project maintainers via the `#inspircd` IRC channel on [Chatspike](https://chatspike.net).
 
diff --git a/bootstrap.sh b/bootstrap.sh
index 9c3ba32..02a4c6f 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -11,7 +11,7 @@ command_exists wget
 docker_installed
 
 # Workaround for CentOS and maybe more OSes where docker.service is not started automatically
-# See https://github.com/inspircd/inspircd-docker/issues/35
+# See https://github.com/inspircd/docker/issues/35
 if command -v systemctl >/dev/null 2>&1; then
     # Make sure docker unit exists
     if [ "$(systemctl cat docker | wc -l)" -ne 0 ]; then
diff --git a/conf/docker.motd b/conf/docker.motd
index f01c27d..739a1d4 100644
--- a/conf/docker.motd
+++ b/conf/docker.motd
@@ -51,6 +51,6 @@
 
       A warm welcome from the InspIRCd-Docker Team, too!
       For Issues:
-      https://github.com/inspircd/inspircd-docker/issues
+      https://github.com/inspircd/docker/issues
 
       Have fun with the image!
diff --git a/conf/links.sh b/conf/links.sh
index f3ded6a..5fef39a 100755
--- a/conf/links.sh
+++ b/conf/links.sh
@@ -13,7 +13,7 @@
 # generateLinkBlock <NAME> <IPADDR> <PORT> <SENDPASS> <RECVPASS> <ALLOWMASK> <MORE>
 generateLinkBlock() {
 if [ "$6" = "" ]; then
-    echo "<die reason value=\"Wrong configured link block. Please check your configs! For details see: https://github.com/inspircd/inspircd-docker#linking-servers-and-services\">"
+    echo "<die reason value=\"Wrong configured link block. Please check your configs! For details see: https://github.com/inspircd/docker#linking-servers-and-services\">"
     exit 1
 fi
 cat <<EOF
-- 
GitLab