Skip to content

Commit c262dbf

Browse files
committed
Use https for links to ansible.com domains.
1 parent 0d1e9bf commit c262dbf

File tree

46 files changed

+61
-61
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+61
-61
lines changed

CHANGELOG.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ Ansible Changes By Release
55

66
## 2.6 "Heartbreaker" - ACTIVE DEVELOPMENT
77

8-
[Porting Guide](http://docs.ansible.com/ansible/devel/porting_guides/porting_guides.html)
8+
[Porting Guide](https://docs.ansible.com/ansible/devel/porting_guides/porting_guides.html)
99

1010
### Major Changes
1111

1212
### Deprecations (to be removed in 2.10)
1313
* In the `nxos_igmp_interface` module, `oif_prefix` and `oif_source` properties are deprecated.
1414
Use the `oif_ps` parameter with a dictionary of prefix and source to values instead.
1515

16-
See [Porting Guide](http://docs.ansible.com/ansible/devel/porting_guides/porting_guides.html) for more information
16+
See [Porting Guide](https://docs.ansible.com/ansible/devel/porting_guides/porting_guides.html) for more information
1717

1818
### Minor Changes
1919
* Removed restriction from protocol in cloudflare_dns module to allow other protocols than tcp and udp to be specified.
@@ -127,7 +127,7 @@ See [Porting Guide](https://docs.ansible.com/ansible/devel/porting_guides/portin
127127
* network_cli
128128
* netconf
129129

130-
While neither is technically a new plugin, these connections may now be used directly with network modules. See [Network Best Practices for Ansible 2.5](http://docs.ansible.com/ansible/devel/network_best_practices_2.5.html) for more details.
130+
While neither is technically a new plugin, these connections may now be used directly with network modules. See [Network Best Practices for Ansible 2.5](https://docs.ansible.com/ansible/devel/network_best_practices_2.5.html) for more details.
131131

132132
#### Filters
133133
* parse_xml
@@ -1358,7 +1358,7 @@ While neither is technically a new plugin, these connections may now be used dir
13581358

13591359
## 2.3 "Ramble On" - 2017-04-12
13601360

1361-
Moving to Ansible 2.3 guide http://docs.ansible.com/ansible/porting_guide_2.3.html
1361+
Moving to Ansible 2.3 guide https://docs.ansible.com/ansible/porting_guide_2.3.html
13621362

13631363
### Major Changes
13641364
* Documented and renamed the previously released 'single var vaulting' feature, allowing user to use vault encryption for single variables in a normal YAML vars file.
@@ -2133,7 +2133,7 @@ Module fixes:
21332133
* Added a new strategy `debug`, which allows per-task debugging of playbooks, for more details see https://docs.ansible.com/ansible/playbooks_debugger.html
21342134
* Added a new option for tasks: `loop_control`. This currently only supports one option - `loop_var`, which allows a different loop variable from `item` to be used.
21352135
* Added the ability to filter facts returned by the fact gathering setup step using the `gather_subset` option on the play or in the ansible.cfg configuration file.
2136-
See http://docs.ansible.com/ansible/intro_configuration.html#gathering for details on the format of the option.
2136+
See https://docs.ansible.com/ansible/intro_configuration.html#gathering for details on the format of the option.
21372137
* Added the ability to send per-item callbacks, rather than a batch update (this more closely resembles the behavior of Ansible 1.x).
21382138
* Added facility for modules to send back 'diff' for display when ansible is called with --diff, updated several modules to return this info
21392139
* Added ansible-console tool, a REPL shell that allows running adhoc tasks against a chosen inventory (based on https://github.com/dominis/ansible-shell)

CODING_GUIDELINES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ PEP 8 and basic style checks
2020
* [PEP 8](https://www.python.org/dev/peps/pep-0008/) is a great Python style guide, which you should read.
2121
* PEP 8 must not be strictly followed in all aspects, but most of it is good advice.
2222
* The line is limited to 160 characters.
23-
* To run checks for things we care about, use [ansible-test](http://docs.ansible.com/ansible/dev_guide/testing_pep8.html#running-locally).
23+
* To run checks for things we care about, use [ansible-test](https://docs.ansible.com/ansible/dev_guide/testing_pep8.html#running-locally).
2424
* Similarly, additional checks can be made with "make pyflakes".
2525
* There is no need to submit code changes for PEP 8 and pyflakes fixes, as these break attribution history. Project leadership will make these periodically.
2626
* Do not submit pull requests that simply adjust whitespace in the code.

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ Hi! Nice to see you here!
55

66
## QUESTIONS ?
77

8-
Please see the [community guide](http://docs.ansible.com/ansible/latest/community/index.html) for information on how to ask questions on the [mailing lists](http://docs.ansible.com/ansible/latest/community/communication.html#mailing-list-information) and IRC.
8+
Please see the [community guide](https://docs.ansible.com/ansible/latest/community/index.html) for information on how to ask questions on the [mailing lists](https://docs.ansible.com/ansible/latest/community/communication.html#mailing-list-information) and IRC.
99

1010
The GitHub issue tracker is not the best place for questions for various reasons, but both IRC and the mailing list are very helpful places for those things, as the community page explains best.
1111

1212

1313
## CONTRIBUTING ?
1414

15-
Please see the [community guide](http://docs.ansible.com/ansible/latest/community/index.html) for information regarding the contribution process. Important license agreement information is also included on that page.
15+
Please see the [community guide](https://docs.ansible.com/ansible/latest/community/index.html) for information regarding the contribution process. Important license agreement information is also included on that page.
1616

1717

1818
## BUG TO REPORT ?
1919

20-
First and foremost, also check the [community guide](http://docs.ansible.com/ansible/latest/community/index.html).
20+
First and foremost, also check the [community guide](https://docs.ansible.com/ansible/latest/community/index.html).
2121

2222
You can report bugs or make enhancement requests at the [Ansible GitHub issue page](https://github.com/ansible/ansible/issues/new) by filling out the issue template that will be presented.
2323

MODULE_GUIDELINES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Module Maintainer Guidelines
22

3-
The Ansible Module Maintainer Guidelines can now be found in the [official Ansible community guide](http://docs.ansible.com/ansible/latest/community/maintainers.html).
3+
The Ansible Module Maintainer Guidelines can now be found in the [official Ansible community guide](https://docs.ansible.com/ansible/latest/community/maintainers.html).

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,6 @@ See `COPYING <COPYING>`_ to see the full text.
9595
.. |PyPI version| image:: https://img.shields.io/pypi/v/ansible.svg
9696
:target: https://pypi.org/project/ansible
9797
.. |Docs badge| image:: https://img.shields.io/badge/docs-latest-brightgreen.svg
98-
:target: http://docs.ansible.com/ansible
98+
:target: https://docs.ansible.com/ansible
9999
.. |Build Status| image:: https://api.shippable.com/projects/573f79d02a8192902e20e34b/badge?branch=devel
100100
:target: https://app.shippable.com/projects/573f79d02a8192902e20e34b

ROADMAP.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ These roadmaps are the team's *best guess* roadmaps based on the Ansible team's
1414
- AnsibleFest conferences.
1515
- IRC Freenode channel: #ansible-devel (this one may have things lost in lots of conversation, so a caution).
1616

17-
Ansible Roadmaps can be found `here <http://docs.ansible.com/ansible/devel/roadmap/>`_.
17+
Ansible Roadmaps can be found `here <https://docs.ansible.com/ansible/devel/roadmap/>`_.

docs/docsite/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Homepage and documentation source for Ansible
22
=============================================
33

4-
This project hosts the source behind [docs.ansible.com](http://docs.ansible.com/)
4+
This project hosts the source behind [docs.ansible.com](https://docs.ansible.com/)
55

66
Contributions to the documentation are welcome. To make changes, submit a pull request that changes the reStructuredText files in the `rst/` directory only, and the core team can do a docs build and push the static files.
77

@@ -18,4 +18,4 @@ Note that module documentation can actually be [generated from a DOCUMENTATION d
1818
To install sphinx and the required theme, install pip and then "pip install sphinx sphinx_rtd_theme"
1919

2020
[file issues]: https://github.com/ansible/ansible/issues
21-
[module-docs]: http://docs.ansible.com/developing_modules.html#documenting-your-module
21+
[module-docs]: https://docs.ansible.com/developing_modules.html#documenting-your-module

docs/docsite/rst/dev_guide/developing_api.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ write plugins, and you can plug in inventory data from external data sources. T
1515
gives a basic overview and examples of the Ansible execution and playbook API.
1616

1717
If you would like to use Ansible programmatically from a language other than Python, trigger events asynchronously,
18-
or have access control and logging demands, please see the `Ansible Tower documentation <http://docs.ansible.com/ansible-tower/>`_.
18+
or have access control and logging demands, please see the `Ansible Tower documentation <https://docs.ansible.com/ansible-tower/>`_.
1919

2020
.. note:: Because Ansible relies on forking processes, this API is not thread safe.
2121

docs/docsite/rst/dev_guide/style_guide/_themes/srtd/footer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<hr/>
1414

1515
<p>
16-
&copy; Copyright 2015 <a href="http://ansible.com">Ansible, Inc.</a>.
16+
&copy; Copyright 2015 <a href="https://ansible.com">Ansible, Inc.</a>.
1717

1818
{%- if last_updated %}
1919
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}

docs/docsite/rst/dev_guide/style_guide/_themes/srtd/layout.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -197,11 +197,11 @@
197197

198198
<!-- AnsibleFest and free eBook preview stuff -->
199199
<center>
200-
<a href="http://www.ansible.com/tower?utm_source=docs">
201-
<img src="http://www.ansible.com/hubfs/Docs_Ads/TowerDocs.png">
200+
<a href="https://www.ansible.com/tower?utm_source=docs">
201+
<img src="https://www.ansible.com/hubfs/Docs_Ads/TowerDocs.png">
202202
</a>
203203
<a href="https://www.eventbrite.com/e/ansiblefest-nyc-2015-tickets-16058031003">
204-
<img src="http://www.ansible.com/hubfs/Docs_Ads/Untitled_design_1.png">
204+
<img src="https://www.ansible.com/hubfs/Docs_Ads/Untitled_design_1.png">
205205
</a>
206206
<br/>&nbsp;<br/>
207207
<br/>&nbsp;<br/>

docs/docsite/rst/installation_guide/intro_installation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ Readers that use virtualenv can also install Ansible under virtualenv, though we
277277
Tarballs of Tagged Releases
278278
+++++++++++++++++++++++++++
279279

280-
Packaging Ansible or wanting to build a local package yourself, but don't want to do a git checkout? Tarballs of releases are available on the `Ansible downloads <http://releases.ansible.com/ansible>`_ page.
280+
Packaging Ansible or wanting to build a local package yourself, but don't want to do a git checkout? Tarballs of releases are available on the `Ansible downloads <https://releases.ansible.com/ansible>`_ page.
281281

282282
These releases are also tagged in the `git repository <https://github.com/ansible/ansible/releases>`_ with the release version.
283283

docs/docsite/rst/network/getting_started/intermediate_concepts.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ Text
4949

5050
Read more about Ansible for Network Automation:
5151

52-
- Network Automation on the `Ansible website <http://ansible.com/overview/networking>`_
53-
- Ansible Network `Blog posts <http://ansible.com/blog/topic/networks>`_
52+
- Network Automation on the `Ansible website <https://ansible.com/overview/networking>`_
53+
- Ansible Network `Blog posts <https://ansible.com/blog/topic/networks>`_
5454

5555
Events (on Video and in Person)
5656
--------------------------------

docs/docsite/rst/scenario_guides/guide_aci.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ For instance ensuring that a specific tenant exists, is done using the following
6565
description: Customer XYZ
6666
state: present
6767
68-
A complete list of existing ACI modules is available for the latest stable release on the :ref:`list of network modules <list_of_network_modules>`. You can also view the `current development version <http://docs.ansible.com/ansible/devel/modules/list_of_network_modules.html#aci>`_.
68+
A complete list of existing ACI modules is available for the latest stable release on the :ref:`list of network modules <list_of_network_modules>`. You can also view the `current development version <https://docs.ansible.com/ansible/devel/modules/list_of_network_modules.html#aci>`_.
6969

7070
Querying ACI configuration
7171
..........................

docs/templates/man.j2

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ INVENTORY
6767

6868
Ansible stores the hosts it can potentially operate on in an inventory.
6969
This can be an YAML file, ini-like file, a script, directory, list, etc.
70-
For additional options, see the documentation on http://docs.ansible.com/.
70+
For additional options, see the documentation on https://docs.ansible.com/.
7171

7272
{% endif %}
7373
ENVIRONMENT
@@ -119,6 +119,6 @@ SEE ALSO
119119
{% for other in cli_list|sort %}{% if other != cli %}**ansible{% if other != 'adhoc' %}-{{other}}{% endif %}** (1){% if not loop.last %}, {% endif %}{% endif %}{% endfor %}
120120

121121
Extensive documentation is available in the documentation site:
122-
<http://docs.ansible.com>.
122+
<https://docs.ansible.com>.
123123
IRC and mailing list info can be found in file CONTRIBUTING.md,
124124
available in: <https://github.com/ansible/ansible>

examples/DOCUMENTATION.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# aliases) you can use the word 'null', or an empty list, [], where
44
# appropriate.
55
#
6-
# See http://docs.ansible.com/ansible/dev_guide/developing_modules_documenting.html for more information
6+
# See https://docs.ansible.com/ansible/dev_guide/developing_modules_documenting.html for more information
77
#
88
module: modulename
99
short_description: This is a sentence describing the module

hacking/metadata-tool.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def parse_assigned_metadata(csvfile):
177177
:4: deprecated
178178
:5: removed
179179
180-
http://docs.ansible.com/ansible/latest/dev_guide/developing_modules_documenting.html#ansible-metadata-block
180+
https://docs.ansible.com/ansible/latest/dev_guide/developing_modules_documenting.html#ansible-metadata-block
181181
"""
182182
with open(csvfile, 'rb') as f:
183183
for record in csv.reader(f):

lib/ansible/cli/vault.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
1515
#
1616
# ansible-vault is a script that encrypts/decrypts YAML files. See
17-
# http://docs.ansible.com/playbooks_vault.html for more details.
17+
# https://docs.ansible.com/playbooks_vault.html for more details.
1818

1919
from __future__ import (absolute_import, division, print_function)
2020
__metaclass__ = type

lib/ansible/module_utils/connection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def _exec_jsonrpc(self, name, *args, **kwargs):
111111
req = request_builder(name, *args, **kwargs)
112112
reqid = req['id']
113113

114-
troubleshoot = 'http://docs.ansible.com/ansible/latest/network/user_guide/network_debug_troubleshooting.html#category-socket-path-issue'
114+
troubleshoot = 'https://docs.ansible.com/ansible/latest/network/user_guide/network_debug_troubleshooting.html#category-socket-path-issue'
115115

116116
if not os.path.exists(self.socket_path):
117117
raise ConnectionError('socket_path does not exist or cannot be found. Please check %s' % troubleshoot)

lib/ansible/modules/cloud/amazon/GUIDELINES.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ connection = boto3_conn(module, conn_type='client', resource='ec2', region=regio
158158

159159
### Common Documentation Fragments for Connection Parameters
160160

161-
There are two [common documentation fragments](http://docs.ansible.com/ansible/latest/dev_guide/developing_modules_documenting.html#documentation-fragments)
161+
There are two [common documentation fragments](https://docs.ansible.com/ansible/latest/dev_guide/developing_modules_documenting.html#documentation-fragments)
162162
that should be included into almost all AWS modules:
163163

164164
* `aws` - contains the common boto connection parameters
@@ -518,8 +518,8 @@ affect the module are detected. At a minimum this should cover the key API calls
518518
documented return values are present in the module result.
519519

520520
For general information on running the integration tests see the [Integration Tests page of the
521-
Module Development Guide](http://docs.ansible.com/ansible/latest/dev_guide/testing_integration.html).
522-
Particularly the [cloud test configuration section](http://docs.ansible.com/ansible/latest/dev_guide/testing_integration.html#other-configuration-for-cloud-tests)
521+
Module Development Guide](https://docs.ansible.com/ansible/latest/dev_guide/testing_integration.html).
522+
Particularly the [cloud test configuration section](https://docs.ansible.com/ansible/latest/dev_guide/testing_integration.html#other-configuration-for-cloud-tests)
523523

524524
The integration tests for your module should be added in `test/integration/targets/MODULE_NAME`.
525525

@@ -567,7 +567,7 @@ for every call, it's preferrable to use [YAML Anchors](http://blog.daemonl.com/2
567567
568568
### AWS Permissions for Integration Tests
569569
570-
As explained in the [Integration Test guide](http://docs.ansible.com/ansible/latest/dev_guide/testing_integration.html#iam-policies-for-aws)
570+
As explained in the [Integration Test guide](https://docs.ansible.com/ansible/latest/dev_guide/testing_integration.html#iam-policies-for-aws)
571571
there are defined IAM policies in `hacking/aws_config/testing_policies/` that contain the necessary permissions
572572
to run the AWS integration test.
573573

lib/ansible/modules/cloud/ovirt/README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ New module development
4747
----------------------
4848

4949
Please read
50-
`link <http://docs.ansible.com/ansible/dev_guide/developing_modules.html#how-to-develop-a-module>`__,
50+
`link <https://docs.ansible.com/ansible/dev_guide/developing_modules.html#how-to-develop-a-module>`__,
5151
first to know what common properties, functions and features every module must
5252
have.
5353

lib/ansible/modules/net_tools/basics/get_url.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
the target host, requests will be sent through that proxy. This
2525
behaviour can be overridden by setting a variable for this task
2626
(see `setting the environment
27-
<http://docs.ansible.com/playbooks_environment.html>`_),
27+
<https://docs.ansible.com/playbooks_environment.html>`_),
2828
or by using the use_proxy option.
2929
- HTTP redirects can redirect from HTTP to HTTPS so you should be sure that
3030
your proxy environment for both protocols is correct.

lib/ansible/modules/notification/pushbullet.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
device: Chrome
6969
push_type: link
7070
title: Ansible Documentation
71-
body: http://docs.ansible.com/
71+
body: https://docs.ansible.com/
7272
7373
# Sends a push notification to a channel
7474
- pushbullet:

lib/ansible/modules/system/user.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
description:
8989
- Optionally set the user's password to this crypted value.
9090
- On Darwin/OS X systems, this value has to be cleartext. Beware of security issues.
91-
- See U(http://docs.ansible.com/ansible/faq.html#how-do-i-generate-crypted-passwords-for-the-user-module)
91+
- See U(https://docs.ansible.com/ansible/faq.html#how-do-i-generate-crypted-passwords-for-the-user-module)
9292
for details on various ways to generate these password values.
9393
state:
9494
description:

lib/ansible/modules/utilities/logic/async_status.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
choices: [ "status", "cleanup" ]
3333
default: "status"
3434
notes:
35-
- See also U(http://docs.ansible.com/playbooks_async.html)
35+
- See also U(https://docs.ansible.com/playbooks_async.html)
3636
- This module is also supported for Windows targets.
3737
author:
3838
- "Ansible Core Team"

lib/ansible/playbook/task.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def preprocess_data(self, ds):
228228
# as we will remove this at some point in the future.
229229
if action in ('include', 'include_tasks') and k not in self._valid_attrs and k not in self.DEPRECATED_ATTRIBUTES:
230230
display.deprecated("Specifying include variables at the top-level of the task is deprecated."
231-
" Please see:\nhttp://docs.ansible.com/ansible/playbooks_roles.html#task-include-files-and-encouraging-reuse\n\n"
231+
" Please see:\nhttps://docs.ansible.com/ansible/playbooks_roles.html#task-include-files-and-encouraging-reuse\n\n"
232232
" for currently supported syntax regarding included files and variables", version="2.7")
233233
new_ds['vars'][k] = v
234234
elif k in self._valid_attrs:

0 commit comments

Comments
 (0)