Skip to content

Commit

Permalink
Modify gpg call to use port 80
Browse files Browse the repository at this point in the history
Change gpg call to use port 80 rather than default to reduce required outbound ports in a locked down environment.
  • Loading branch information
ablundgren committed Jan 23, 2014
1 parent e254042 commit 30c84ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ds2_configure.py
Expand Up @@ -943,7 +943,7 @@ def sync_clocks():
logger.exe('sudo service ntp restart')

def additional_pre_configurations():
logger.exe('gpg --keyserver pgp.mit.edu --recv-keys 40976EAF437D05B5', expectError=True)
logger.exe('gpg --keyserver hkp://pgp.mit.edu:80 --recv-keys 40976EAF437D05B5', expectError=True)
logger.pipe('gpg --export --armor 40976EAF437D05B5', 'sudo apt-key add -')
pass

Expand Down

0 comments on commit 30c84ea

Please sign in to comment.