summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Olsson <andreas@arrakis.se>2021-06-29 09:23:08 +0200
committerGitHub <noreply@github.com>2021-06-29 12:53:08 +0530
commit2eb9921b1909c24eefdf27fa26a40e06c6e718f1 (patch)
treea510e8273c3377d93f5f5e4715a991b9ff604ef8
parentf176cc1edac2b6cad2804a86207b3425f506693f (diff)
downloadansible-2eb9921b1909c24eefdf27fa26a40e06c6e718f1.tar.gz
Prefer https:// links in the docs site (#75121)
This is a follow-up of previous years' 1a11cec and c8315bf. It deals with links which at that point presumably either were not present or did not support https://
-rw-r--r--docs/docsite/rst/community/communication.rst2
-rw-r--r--docs/docsite/rst/dev_guide/developing_modules_checklist.rst2
-rw-r--r--docs/docsite/rst/galaxy/user_guide.rst2
-rw-r--r--docs/docsite/rst/reference_appendices/test_strategies.rst2
-rw-r--r--docs/docsite/rst/user_guide/playbooks_filters.rst2
-rw-r--r--docs/docsite/rst/user_guide/playbooks_tests.rst4
6 files changed, 7 insertions, 7 deletions
diff --git a/docs/docsite/rst/community/communication.rst b/docs/docsite/rst/community/communication.rst
index 28aa3e3215..c58b40e6c6 100644
--- a/docs/docsite/rst/community/communication.rst
+++ b/docs/docsite/rst/community/communication.rst
@@ -111,5 +111,5 @@ If you have any questions or content you would like to share, please reach out t
Read past issues `here <https://github.com/ansible/community/wiki/News>`_.
-`Subscribe <http://eepurl.com/gZmiEP>`_ to receive it.
+`Subscribe <https://eepurl.com/gZmiEP>`_ to receive it.
diff --git a/docs/docsite/rst/dev_guide/developing_modules_checklist.rst b/docs/docsite/rst/dev_guide/developing_modules_checklist.rst
index ddba03fc20..6e70deb6d7 100644
--- a/docs/docsite/rst/dev_guide/developing_modules_checklist.rst
+++ b/docs/docsite/rst/dev_guide/developing_modules_checklist.rst
@@ -31,7 +31,7 @@ To contribute a module to most Ansible collections, you must:
Additional requirements may apply for certain collections. Review the individual collection repositories for more information.
-Please make sure your module meets these requirements before you submit your PR/proposal. If you have questions, reach out via ``#ansible-devel``, Ansible's IRC chat channel on `irc.libera.chat <http://libera.chat>`_ or the `Ansible development mailing list <https://groups.google.com/group/ansible-devel>`_.
+Please make sure your module meets these requirements before you submit your PR/proposal. If you have questions, reach out via ``#ansible-devel``, Ansible's IRC chat channel on `irc.libera.chat <https://libera.chat>`_ or the `Ansible development mailing list <https://groups.google.com/group/ansible-devel>`_.
Contributing to Ansible: subjective requirements
================================================
diff --git a/docs/docsite/rst/galaxy/user_guide.rst b/docs/docsite/rst/galaxy/user_guide.rst
index 4e084d641d..2ac085cdda 100644
--- a/docs/docsite/rst/galaxy/user_guide.rst
+++ b/docs/docsite/rst/galaxy/user_guide.rst
@@ -348,7 +348,7 @@ Below are the contents of the :file:`webserver.yml` file:
- src: https://github.com/bennojoy/nginx
# from Bitbucket
- - src: git+http://bitbucket.org/willthames/git-ansible-galaxy
+ - src: git+https://bitbucket.org/willthames/git-ansible-galaxy
version: v1.4
The following shows the contents of the :file:`requirements.yml` file that now includes the :file:`webserver.yml` file:
diff --git a/docs/docsite/rst/reference_appendices/test_strategies.rst b/docs/docsite/rst/reference_appendices/test_strategies.rst
index 1e3bdd9de9..767fa76a18 100644
--- a/docs/docsite/rst/reference_appendices/test_strategies.rst
+++ b/docs/docsite/rst/reference_appendices/test_strategies.rst
@@ -73,7 +73,7 @@ Here's an example of using the URI module to make sure a web service returns::
tasks:
- - action: uri url=http://www.example.com return_content=yes
+ - action: uri url=https://www.example.com return_content=yes
register: webpage
- fail:
diff --git a/docs/docsite/rst/user_guide/playbooks_filters.rst b/docs/docsite/rst/user_guide/playbooks_filters.rst
index 28a7accb49..0d6528b8ed 100644
--- a/docs/docsite/rst/user_guide/playbooks_filters.rst
+++ b/docs/docsite/rst/user_guide/playbooks_filters.rst
@@ -688,7 +688,7 @@ To select a single element or a data subset from a complex data structure in JSO
This filter has migrated to the `community.general <https://galaxy.ansible.com/community/general>`_ collection. Follow the installation instructions to install that collection.
-.. note:: You must manually install the **jmespath** dependency on the Ansible controller before using this filter. This filter is built upon **jmespath**, and you can use the same syntax. For examples, see `jmespath examples <http://jmespath.org/examples.html>`_.
+.. note:: You must manually install the **jmespath** dependency on the Ansible controller before using this filter. This filter is built upon **jmespath**, and you can use the same syntax. For examples, see `jmespath examples <https://jmespath.org/examples.html>`_.
Consider this data structure::
diff --git a/docs/docsite/rst/user_guide/playbooks_tests.rst b/docs/docsite/rst/user_guide/playbooks_tests.rst
index bdd52fa9d2..e8ad4a71e1 100644
--- a/docs/docsite/rst/user_guide/playbooks_tests.rst
+++ b/docs/docsite/rst/user_guide/playbooks_tests.rst
@@ -40,12 +40,12 @@ Testing strings
To match strings against a substring or a regular expression, use the ``match``, ``search`` or ``regex`` tests::
vars:
- url: "http://example.com/users/foo/resources/bar"
+ url: "https://example.com/users/foo/resources/bar"
tasks:
- debug:
msg: "matched pattern 1"
- when: url is match("http://example.com/users/.*/resources/")
+ when: url is match("https://example.com/users/.*/resources/")
- debug:
msg: "matched pattern 2"