bigdata-dev team mailing list archive
-
bigdata-dev team
-
Mailing list archive
-
Message #00086
[Merge] lp:~kwmonroe/charms/trusty/hdp-hadoop/trunk into lp:charms/trusty/hdp-hadoop
Kevin W Monroe has proposed merging lp:~kwmonroe/charms/trusty/hdp-hadoop/trunk into lp:charms/trusty/hdp-hadoop.
Requested reviews:
Juju Big Data Development (bigdata-dev)
For more details, see:
https://code.launchpad.net/~kwmonroe/charms/trusty/hdp-hadoop/trunk/+merge/260886
Allow keyserver access via port 80. The mit.edu keyserver used in our gpg_ubuntu.sh script supports this, and it eases the install burden for people in restricted networks (default hkp xfers happen over port 11371, which would probably not be open/forwarded in most restrictive networks; port 80 is more likely to be free).
--
Your team Juju Big Data Development is requested to review the proposed merge of lp:~kwmonroe/charms/trusty/hdp-hadoop/trunk into lp:charms/trusty/hdp-hadoop.
=== modified file 'files/scripts/gpg_ubuntu.sh'
--- files/scripts/gpg_ubuntu.sh 2014-07-09 12:37:36 +0000
+++ files/scripts/gpg_ubuntu.sh 2015-06-02 20:41:13 +0000
@@ -1,3 +1,3 @@
#!/bin/sh
-gpg --keyserver pgp.mit.edu --recv-keys B9733A7A07513CAD
-gpg -a --export 07513CAD | apt-key add -
\ No newline at end of file
+gpg --keyserver hkp://pgp.mit.edu:80 --recv-keys B9733A7A07513CAD
+gpg -a --export 07513CAD | apt-key add -
Follow ups