anystupidname
June 6th, 2009, 03:02 PM
At home I add keys via this script:
#!/bin/bash
sudo gpg --keyserver subkeys.pgp.net --recv-keys $1
sudo gpg --armor --export $1 | sudo apt-key add -
At work they block port 11371 so I've just been ignoring the authentication warnings when I use apt but this bothers me. ](*,) Could anybody please offer suggestions for an alternate semi-automated method of adding keys when 11371 is blocked? Please and thanks!
#!/bin/bash
sudo gpg --keyserver subkeys.pgp.net --recv-keys $1
sudo gpg --armor --export $1 | sudo apt-key add -
At work they block port 11371 so I've just been ignoring the authentication warnings when I use apt but this bothers me. ](*,) Could anybody please offer suggestions for an alternate semi-automated method of adding keys when 11371 is blocked? Please and thanks!