.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
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
```