~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/rocketfuel-setup

  • Committer: Deryck Hodge
  • Date: 2011-05-19 15:46:33 UTC
  • mto: This revision was merged to the branch mainline in revision 13091.
  • Revision ID: deryck.hodge@canonical.com-20110519154633-a8evkxnkewdzpcf3
Update the keyserver URL based on Sorin Sbârnea's suggestion
in bug 785155 to work behind corporate firewalls.

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
   sudo apt-key list | grep -q $key
130
130
   if [ $? -ne 0 ]; then
131
131
     echo "Retrieving key $key."
132
 
     gpg --keyserver keyserver.ubuntu.com --recv-keys $key
 
132
     gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys $key
133
133
     if [ $? -ne 0 ]; then
134
134
       echo "Could not retrieve key $key."
135
135
       exit 1