diff options
author | Robin Schneider <ypid@riseup.net> | 2017-02-16 01:09:33 +0100 |
---|---|---|
committer | scottb <dharmabumstead@users.noreply.github.com> | 2017-02-15 16:09:33 -0800 |
commit | 3700bcb6dd3df3e24defd9d1636253dd66e02174 (patch) | |
tree | b50de38f21be9053adb1afde4042842ac6697c04 /packaging | |
parent | f77599620954ff6c9e2668d382a14100571c9f11 (diff) | |
download | ansible-3700bcb6dd3df3e24defd9d1636253dd66e02174.tar.gz |
Use HTTPS instead of legacy HTTP for ansible.com (#16870)
Mechanical edit done by this "one-liner":
```Shell
git ls-files -z "$(git rev-parse --show-toplevel)" | xargs --null -I '{}' find '{}' -type f -print0 | xargs --null sed --in-place --regexp-extended 's#http://(www\.|galaxy\.|)ansible\.com#https://\1ansible.com#g;'
```
Related to: https://github.com/ansible/ansible/issues/16869
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/arch/PKGBUILD | 2 | ||||
-rw-r--r-- | packaging/macports/sysutils/ansible/Portfile | 2 | ||||
-rw-r--r-- | packaging/rpm/ansible.spec | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index 508dd1e3cb..9f90775d04 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -14,7 +14,7 @@ pkgver=1.6.0.1835.ga1809a3 pkgrel=1 pkgdesc='Radically simple IT automation platform' arch=('any') -url='http://www.ansible.com' +url='https://www.ansible.com' license=('GPL3') depends=('python2' 'python2-paramiko' 'python2-jinja' 'python2-yaml') makedepends=('git' 'asciidoc' 'fakeroot') diff --git a/packaging/macports/sysutils/ansible/Portfile b/packaging/macports/sysutils/ansible/Portfile index b123fc58ff..281e7ee961 100644 --- a/packaging/macports/sysutils/ansible/Portfile +++ b/packaging/macports/sysutils/ansible/Portfile @@ -11,7 +11,7 @@ supported_archs noarch maintainers nomaintainer -homepage http://ansible.com/ +homepage https://ansible.com/ description Radically simple IT automation long_description \ Ansible is a radically simple model-driven configuration \ diff --git a/packaging/rpm/ansible.spec b/packaging/rpm/ansible.spec index abfea6c43c..8fcb79e73e 100644 --- a/packaging/rpm/ansible.spec +++ b/packaging/rpm/ansible.spec @@ -8,7 +8,7 @@ Name: %{name} Version: %{ansible_version} Release: 1%{?dist} -Url: http://www.ansible.com +Url: https://www.ansible.com Summary: SSH-based application deployment, configuration management, and IT orchestration platform License: GPLv3 Group: Development/Libraries |