Browse code

Clone LVM using https: instead of git:

The ports for the git protocol are not open in all corporate environments

Danny Yates authored on 2013/11/26 02:12:18
Showing 1 changed files
... ...
@@ -57,7 +57,7 @@ run	apt-get install -y -q lxc
57 57
 run	apt-get install -y -q aufs-tools
58 58
 
59 59
 # Get lvm2 source for compiling statically
60
-run	git clone git://git.fedorahosted.org/git/lvm2.git /usr/local/lvm2 && cd /usr/local/lvm2 && git checkout v2_02_103
60
+run	git clone https://git.fedorahosted.org/git/lvm2.git /usr/local/lvm2 && cd /usr/local/lvm2 && git checkout v2_02_103
61 61
 # see https://git.fedorahosted.org/cgit/lvm2.git/refs/tags for release tags
62 62
 # note: we can't use "git clone -b" above because it requires at least git 1.7.10 to be able to use that on a tag instead of a branch and we only have 1.7.9.5
63 63