summaryrefslogtreecommitdiff
path: root/packaging/debian/README.md
diff options
context:
space:
mode:
authorAndreas Olsson <andreas@arrakis.se>2017-10-03 21:16:25 +0200
committerToshio Kuratomi <a.badger@gmail.com>2017-10-03 12:16:25 -0700
commitba0b91b51b942f8504995317914e6441a824a62c (patch)
treedad42f101f0488cfa01096da928578f96e7d59fd /packaging/debian/README.md
parent2d70dc7f21e88ab9049479bc08c7e559aa10753f (diff)
downloadansible-ba0b91b51b942f8504995317914e6441a824a62c.tar.gz
Remove git:// urls from docsite and from packaging (#30459)
It's almost always preferable to clone by way of https:// rather than using the bare git:// protocol. Not only does https:// provide stronger guarantees it also plays nicer with corporate proxies, etc.
Diffstat (limited to 'packaging/debian/README.md')
-rw-r--r--packaging/debian/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/debian/README.md b/packaging/debian/README.md
index cf2a689fc7..6e735fb3c5 100644
--- a/packaging/debian/README.md
+++ b/packaging/debian/README.md
@@ -7,7 +7,7 @@ __Note__: You must run this target as root or set `PBUILDER_BIN='sudo pbuilder'`
```
apt-get install asciidoc cdbs debootstrap devscripts make pbuilder python-setuptools
-git clone git://github.com/ansible/ansible.git
+git clone https://github.com/ansible/ansible.git
cd ansible
git submodule update --init
DEB_DIST='xenial trusty precise' make deb
@@ -16,7 +16,7 @@ DEB_DIST='xenial trusty precise' make deb
Building in Docker:
```
-git clone git://github.com/ansible/ansible.git
+git clone https://github.com/ansible/ansible.git
cd ansible
git submodule update --init
docker build -t ansible-deb-builder -f packaging/debian/Dockerfile .