@rhessinger said in ProGet bug - Duplicate custom Feed Usage Instructions for Debian feeds:
In the latest updates for the updated Debian feed, most customers were still using the legacy way for adding ProGet as a source.
Actually this feature (signed-by) is quite old. It just was badly documented for a long time (See this question) and therefore nobody used it.
So, for ubuntu, it should work since 16.04. On older systems however, the directory where the keys are to be stored did not exist and the recommended path of that directory changed over time.
The implementation in apt works with any directory (as long as it is readable by apt).
Therefore, a slightly modified command for downloading/generating of the key file should help (first line of existing instructions) like this:
Old:
curl -fsSL http://my.proget.dom/debian/my-repo/keys/my-repo.asc | sudo gpg --dearmor -o /etc/apt/keyrings/my-repo.gpg
New:
sudo mkdir -p /etc/apt/keyrings; curl -fsSL http://my.proget.dom/debian/my-repo/keys/my-repo.asc | sudo gpg --dearmor -o /etc/apt/keyrings/my-repo.gpg
This should work even on older systems.
Sorry I forgot to mention that in the first place.
Cheers
-Fritz
