
16 Mar
2007
16 Mar
'07
1:15 a.m.
At Fri, 16 Mar 2007 01:07:31 +0000, Brian Hulley wrote:
I can't find any info on the debian.org website about where to find the key or what command to use to tell apt about it. Do you know where the GPG key for the repo can be found? I've spent hours googling with no luck.
Hello, In general you can do: apt-get install debian-archive-keyring You might also want debian-keyring. If you point at 3rd-party repositories you can do something like this script: $ cat ~/getkey.sh #!/bin/sh gpg --keyserver subkeys.pgp.net --recv $1 && gpg --export --armor $1 | apt-key add - HTH, j.