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. _______________________________________________ Glasgow-haskell-users mailing list [email protected] http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
