Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all pypi.python.org URLs to pypi.org #38988

Merged
merged 1 commit into from
May 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion contrib/inventory/scaleway.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

This script generates an inventory that Ansible can understand by making API requests to Scaleway API

Requires some python libraries, ensure to have them installed when using this script. (pip install requests https://pypi.python.org/pypi/requests)
Requires some python libraries, ensure to have them installed when using this script. (pip install requests https://pypi.org/project/requests/)

Before using this script you may want to modify scaleway.ini config file.

Expand Down
4 changes: 2 additions & 2 deletions contrib/inventory/serf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# (https://serfdom.io/).
#
# Requires the `serfclient` Python module from
# https://pypi.python.org/pypi/serfclient
# https://pypi.org/project/serfclient/
#
# Environment variables
# ---------------------
Expand All @@ -35,7 +35,7 @@
import os
import sys

# https://pypi.python.org/pypi/serfclient
# https://pypi.org/project/serfclient/
from serfclient import SerfClient, EnvironmentConfig

try:
Expand Down
2 changes: 1 addition & 1 deletion contrib/vault/vault-keyring-client.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# This file *MUST* be saved with executable permissions. Otherwise, Ansible
# will try to parse as a password file and display: "ERROR! Decryption failed"
#
# The `keyring` Python module is required: https://pypi.python.org/pypi/keyring
# The `keyring` Python module is required: https://pypi.org/project/keyring/
#
# By default, this script will store the specified password in the keyring of
# the user that invokes the script. To specify a user keyring, add a [vault]
Expand Down
2 changes: 1 addition & 1 deletion contrib/vault/vault-keyring.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# This file *MUST* be saved with executable permissions. Otherwise, Ansible
# will try to parse as a password file and display: "ERROR! Decryption failed"
#
# The `keyring` Python module is required: https://pypi.python.org/pypi/keyring
# The `keyring` Python module is required: https://pypi.org/project/keyring/
#
# By default, this script will store the specified password in the keyring of
# the user that invokes the script. To specify a user keyring, add a [vault]
Expand Down
2 changes: 1 addition & 1 deletion docs/docsite/rst/dev_guide/testing_pep8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The `PEP 8`_ check can be run locally with::


.. _PEP 8: https://www.python.org/dev/peps/pep-0008/
.. _pycodestyle: https://pypi.python.org/pypi/pycodestyle
.. _pycodestyle: https://pypi.org/project/pycodestyle/
.. _current ignore list: https://github.com/ansible/ansible/blob/devel/test/sanity/pep8/current-ignore.txt
.. _legacy file list: https://github.com/ansible/ansible/blob/devel/test/sanity/pep8/legacy-files.txt
.. _legacy ignore list: https://github.com/ansible/ansible/blob/devel/test/sanity/pep8/legacy-ignore.txt
Expand Down
2 changes: 1 addition & 1 deletion docs/docsite/rst/user_guide/playbooks_filters_ipaddr.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ It can usually be installed either via your system package manager, or using

pip install netaddr

.. _netaddr: https://pypi.python.org/pypi/netaddr
.. _netaddr: https://pypi.org/project/netaddr/

.. contents:: Topics
:local:
Expand Down
4 changes: 2 additions & 2 deletions lib/ansible/modules/clustering/consul_acl.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,10 +610,10 @@ def check_dependencies():

if not pyhcl_installed:
raise ImportError("pyhcl required for this module. "
"See: https://pypi.python.org/pypi/pyhcl")
"See: https://pypi.org/project/pyhcl/")

if not has_requests:
raise ImportError("requests required for this module. See https://pypi.python.org/pypi/requests")
raise ImportError("requests required for this module. See https://pypi.org/project/requests/")


def main():
Expand Down
4 changes: 2 additions & 2 deletions lib/ansible/modules/network/panos/_panos_security_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
removed_in: '2.9'
why: This module depended on outdated and old SDK. In 2.4 use M(panos_security_rule) instead.
requirements:
- pan-python can be obtained from PyPi U(https://pypi.python.org/pypi/pan-python)
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
- pan-python can be obtained from PyPi U(https://pypi.org/project/pan-python/)
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
notes:
- Checkmode is not supported.
- Panorama is supported
Expand Down
4 changes: 2 additions & 2 deletions lib/ansible/modules/network/panos/panos_dag_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
author: "Vinay Venkataraghavan (@vinayvenkat)"
version_added: "2.5"
requirements:
- pan-python can be obtained from PyPi U(https://pypi.python.org/pypi/pan-python)
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
- pan-python can be obtained from PyPi U(https://pypi.org/project/pan-python/)
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
notes:
- Checkmode is not supported.
- Panorama is not supported.
Expand Down
2 changes: 1 addition & 1 deletion lib/ansible/modules/network/panos/panos_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
author: "Luigi Mori (@jtschichold), Ivan Bojer (@ivanbojer)"
version_added: "2.3"
requirements:
- pan-python can be obtained from PyPi U(https://pypi.python.org/pypi/pan-python)
- pan-python can be obtained from PyPi U(https://pypi.org/project/pan-python/)
notes:
- Checkmode is not supported.
options:
Expand Down
4 changes: 2 additions & 2 deletions lib/ansible/modules/network/panos/panos_match_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
author: "Robert Hagen (@rnh556)"
version_added: "2.5"
requirements:
- pan-python can be obtained from PyPi U(https://pypi.python.org/pypi/pan-python)
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
- pan-python can be obtained from PyPi U(https://pypi.org/project/pan-python/)
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
notes:
- Checkmode is not supported.
- Panorama NOT is supported.
Expand Down
4 changes: 2 additions & 2 deletions lib/ansible/modules/network/panos/panos_nat_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
author: "Luigi Mori (@jtschichold), Ivan Bojer (@ivanbojer), Robert Hagen (@rnh556)"
version_added: "2.4"
requirements:
- pan-python can be obtained from PyPi U(https://pypi.python.org/pypi/pan-python)
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
- pan-python can be obtained from PyPi U(https://pypi.org/project/pan-python/)
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
notes:
- Checkmode is not supported.
- Panorama is supported.
Expand Down
4 changes: 2 additions & 2 deletions lib/ansible/modules/network/panos/panos_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
author: "Bob Hagen (@rnh556)"
version_added: "2.4"
requirements:
- pan-python can be obtained from PyPi U(https://pypi.python.org/pypi/pan-python)
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
- pan-python can be obtained from PyPi U(https://pypi.org/project/pan-python/)
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
notes:
- Checkmode is not supported.
- Panorama is supported.
Expand Down
4 changes: 2 additions & 2 deletions lib/ansible/modules/network/panos/panos_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
author: "Ivan Bojer (@ivanbojer)"
version_added: "2.5"
requirements:
- pan-python can be obtained from PyPi U(https://pypi.python.org/pypi/pan-python)
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
- pan-python can be obtained from PyPi U(https://pypi.org/project/pan-python/)
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
notes:
- Checkmode is NOT supported.
- Panorama is NOT supported.
Expand Down
6 changes: 3 additions & 3 deletions lib/ansible/modules/network/panos/panos_query_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
author: "Bob Hagen (@rnh556)"
version_added: "2.5"
requirements:
- pan-python can be obtained from PyPi U(https://pypi.python.org/pypi/pan-python)
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
- xmltodict can be obtains from PyPi U(https://pypi.python.org/pypi/xmltodict)
- pan-python can be obtained from PyPi U(https://pypi.org/project/pan-python/)
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
- xmltodict can be obtains from PyPi U(https://pypi.org/project/xmltodict/)
notes:
- Checkmode is not supported.
- Panorama is supported.
Expand Down
6 changes: 3 additions & 3 deletions lib/ansible/modules/network/panos/panos_sag.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
author: "Vinay Venkataraghavan @vinayvenkat"
version_added: "2.4"
requirements:
- pan-python can be obtained from PyPi U(https://pypi.python.org/pypi/pan-python)
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
- xmltodict can be obtained from PyPi U(https://pypi.python.org/pypi/xmltodict)
- pan-python can be obtained from PyPi U(https://pypi.org/project/pan-python/)
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
- xmltodict can be obtained from PyPi U(https://pypi.org/project/xmltodict/)
options:
ip_address:
description:
Expand Down
6 changes: 3 additions & 3 deletions lib/ansible/modules/network/panos/panos_security_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
author: "Ivan Bojer (@ivanbojer), Robert Hagen (@rnh556)"
version_added: "2.4"
requirements:
- pan-python can be obtained from PyPi U(https://pypi.python.org/pypi/pan-python)
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
- xmltodict can be obtained from PyPi U(https://pypi.python.org/pypi/xmltodict)
- pan-python can be obtained from PyPi U(https://pypi.org/project/pan-python/)
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
- xmltodict can be obtained from PyPi U(https://pypi.org/project/xmltodict/)
notes:
- Checkmode is not supported.
- Panorama is supported.
Expand Down
2 changes: 1 addition & 1 deletion lib/ansible/modules/notification/mqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
requirements: [ mosquitto ]
notes:
- This module requires a connection to an MQTT broker such as Mosquitto
U(http://mosquitto.org) and the I(Paho) C(mqtt) Python client (U(https://pypi.python.org/pypi/paho-mqtt)).
U(http://mosquitto.org) and the I(Paho) C(mqtt) Python client (U(https://pypi.org/project/paho-mqtt/)).
author: "Jan-Piet Mens (@jpmens)"
'''

Expand Down