From: Kyle Bowman Date: Sat, 11 Oct 2025 22:44:58 +0000 (-0400) Subject: update client-side instructions X-Git-Url: https://git.rocketbowman.com/?a=commitdiff_plain;h=586edc01700fb42149193dd6e396ded3106f88bb;p=srv-deb.git update client-side instructions --- diff --git a/Makefile b/Makefile index e31e4ca..6ffd9aa 100644 --- a/Makefile +++ b/Makefile @@ -47,4 +47,5 @@ pub-signing-key.asc: .keyspecs .PHONY: update: $(DOWNLOAD_DIR)/bookworm $(DOWNLOAD_DIR)/trixie $(DOWNLOAD_DIR)/sid - ./update_all.sh \ No newline at end of file + ./update_all.sh + cd packages && ln -s ../pub-signing-key.asc . \ No newline at end of file diff --git a/README.md b/README.md index 9aa66de..c25c2f5 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,8 @@ old versions by default. It was largely inspired by Do this for whatever "yourdomain" is. ``` bash -curl -sS https://debian.yourdomain.com/repository-key.asc | sudo gpg --dearmor --yes -o /etc/apt/trusted.gpg.d/yourrepo.gpg +# Note: You do not need to dearmor the .asc if you are putting it into trusted.gpg +curl -sS https://debian.yourdomain.com/repository-key.asc | sudo tee /etc/apt/trusted.gpg.d/yourrepo.gpg echo "deb https://debian.yourdomain.com $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/yourrepo.list sudo apt update ```