mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update all pypi.python.org URLs to pypi.org (#38988)
For details on the new PyPI, see the blog post: https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html
This commit is contained in:
parent
b20a88c39d
commit
1d640182c6
18 changed files with 32 additions and 32 deletions
|
@ -9,7 +9,7 @@ Shamelessly copied from an existing inventory script.
|
||||||
|
|
||||||
This script generates an inventory that Ansible can understand by making API requests to Scaleway API
|
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.
|
Before using this script you may want to modify scaleway.ini config file.
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
# (https://serfdom.io/).
|
# (https://serfdom.io/).
|
||||||
#
|
#
|
||||||
# Requires the `serfclient` Python module from
|
# Requires the `serfclient` Python module from
|
||||||
# https://pypi.python.org/pypi/serfclient
|
# https://pypi.org/project/serfclient/
|
||||||
#
|
#
|
||||||
# Environment variables
|
# Environment variables
|
||||||
# ---------------------
|
# ---------------------
|
||||||
|
@ -35,7 +35,7 @@ import collections
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
# https://pypi.python.org/pypi/serfclient
|
# https://pypi.org/project/serfclient/
|
||||||
from serfclient import SerfClient, EnvironmentConfig
|
from serfclient import SerfClient, EnvironmentConfig
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
# This file *MUST* be saved with executable permissions. Otherwise, Ansible
|
# This file *MUST* be saved with executable permissions. Otherwise, Ansible
|
||||||
# will try to parse as a password file and display: "ERROR! Decryption failed"
|
# 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
|
# 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]
|
# the user that invokes the script. To specify a user keyring, add a [vault]
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
# This file *MUST* be saved with executable permissions. Otherwise, Ansible
|
# This file *MUST* be saved with executable permissions. Otherwise, Ansible
|
||||||
# will try to parse as a password file and display: "ERROR! Decryption failed"
|
# 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
|
# 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]
|
# the user that invokes the script. To specify a user keyring, add a [vault]
|
||||||
|
|
|
@ -48,7 +48,7 @@ The `PEP 8`_ check can be run locally with::
|
||||||
|
|
||||||
|
|
||||||
.. _PEP 8: https://www.python.org/dev/peps/pep-0008/
|
.. _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
|
.. _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 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
|
.. _legacy ignore list: https://github.com/ansible/ansible/blob/devel/test/sanity/pep8/legacy-ignore.txt
|
||||||
|
|
|
@ -19,7 +19,7 @@ It can usually be installed either via your system package manager, or using
|
||||||
|
|
||||||
pip install netaddr
|
pip install netaddr
|
||||||
|
|
||||||
.. _netaddr: https://pypi.python.org/pypi/netaddr
|
.. _netaddr: https://pypi.org/project/netaddr/
|
||||||
|
|
||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
:local:
|
:local:
|
||||||
|
|
|
@ -610,10 +610,10 @@ def check_dependencies():
|
||||||
|
|
||||||
if not pyhcl_installed:
|
if not pyhcl_installed:
|
||||||
raise ImportError("pyhcl required for this module. "
|
raise ImportError("pyhcl required for this module. "
|
||||||
"See: https://pypi.python.org/pypi/pyhcl")
|
"See: https://pypi.org/project/pyhcl/")
|
||||||
|
|
||||||
if not has_requests:
|
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():
|
def main():
|
||||||
|
|
|
@ -40,8 +40,8 @@ deprecated:
|
||||||
removed_in: '2.9'
|
removed_in: '2.9'
|
||||||
why: This module depended on outdated and old SDK. In 2.4 use M(panos_security_rule) instead.
|
why: This module depended on outdated and old SDK. In 2.4 use M(panos_security_rule) instead.
|
||||||
requirements:
|
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/)
|
||||||
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
|
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
|
||||||
notes:
|
notes:
|
||||||
- Checkmode is not supported.
|
- Checkmode is not supported.
|
||||||
- Panorama is supported
|
- Panorama is supported
|
||||||
|
|
|
@ -33,8 +33,8 @@ description:
|
||||||
author: "Vinay Venkataraghavan (@vinayvenkat)"
|
author: "Vinay Venkataraghavan (@vinayvenkat)"
|
||||||
version_added: "2.5"
|
version_added: "2.5"
|
||||||
requirements:
|
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/)
|
||||||
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
|
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
|
||||||
notes:
|
notes:
|
||||||
- Checkmode is not supported.
|
- Checkmode is not supported.
|
||||||
- Panorama is not supported.
|
- Panorama is not supported.
|
||||||
|
|
|
@ -33,7 +33,7 @@ description:
|
||||||
author: "Luigi Mori (@jtschichold), Ivan Bojer (@ivanbojer)"
|
author: "Luigi Mori (@jtschichold), Ivan Bojer (@ivanbojer)"
|
||||||
version_added: "2.3"
|
version_added: "2.3"
|
||||||
requirements:
|
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:
|
notes:
|
||||||
- Checkmode is not supported.
|
- Checkmode is not supported.
|
||||||
options:
|
options:
|
||||||
|
|
|
@ -33,8 +33,8 @@ description:
|
||||||
author: "Robert Hagen (@rnh556)"
|
author: "Robert Hagen (@rnh556)"
|
||||||
version_added: "2.5"
|
version_added: "2.5"
|
||||||
requirements:
|
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/)
|
||||||
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
|
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
|
||||||
notes:
|
notes:
|
||||||
- Checkmode is not supported.
|
- Checkmode is not supported.
|
||||||
- Panorama NOT is supported.
|
- Panorama NOT is supported.
|
||||||
|
|
|
@ -17,8 +17,8 @@ description: >
|
||||||
author: "Luigi Mori (@jtschichold), Ivan Bojer (@ivanbojer), Robert Hagen (@rnh556)"
|
author: "Luigi Mori (@jtschichold), Ivan Bojer (@ivanbojer), Robert Hagen (@rnh556)"
|
||||||
version_added: "2.4"
|
version_added: "2.4"
|
||||||
requirements:
|
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/)
|
||||||
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
|
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
|
||||||
notes:
|
notes:
|
||||||
- Checkmode is not supported.
|
- Checkmode is not supported.
|
||||||
- Panorama is supported.
|
- Panorama is supported.
|
||||||
|
|
|
@ -34,8 +34,8 @@ description:
|
||||||
author: "Bob Hagen (@rnh556)"
|
author: "Bob Hagen (@rnh556)"
|
||||||
version_added: "2.4"
|
version_added: "2.4"
|
||||||
requirements:
|
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/)
|
||||||
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
|
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
|
||||||
notes:
|
notes:
|
||||||
- Checkmode is not supported.
|
- Checkmode is not supported.
|
||||||
- Panorama is supported.
|
- Panorama is supported.
|
||||||
|
|
|
@ -31,8 +31,8 @@ description: This module will allow user to pass and execute any supported OP co
|
||||||
author: "Ivan Bojer (@ivanbojer)"
|
author: "Ivan Bojer (@ivanbojer)"
|
||||||
version_added: "2.5"
|
version_added: "2.5"
|
||||||
requirements:
|
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/)
|
||||||
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
|
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
|
||||||
notes:
|
notes:
|
||||||
- Checkmode is NOT supported.
|
- Checkmode is NOT supported.
|
||||||
- Panorama is NOT supported.
|
- Panorama is NOT supported.
|
||||||
|
|
|
@ -35,9 +35,9 @@ description: >
|
||||||
author: "Bob Hagen (@rnh556)"
|
author: "Bob Hagen (@rnh556)"
|
||||||
version_added: "2.5"
|
version_added: "2.5"
|
||||||
requirements:
|
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/)
|
||||||
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
|
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
|
||||||
- xmltodict can be obtains from PyPi U(https://pypi.python.org/pypi/xmltodict)
|
- xmltodict can be obtains from PyPi U(https://pypi.org/project/xmltodict/)
|
||||||
notes:
|
notes:
|
||||||
- Checkmode is not supported.
|
- Checkmode is not supported.
|
||||||
- Panorama is supported.
|
- Panorama is supported.
|
||||||
|
|
|
@ -28,9 +28,9 @@ description:
|
||||||
author: "Vinay Venkataraghavan @vinayvenkat"
|
author: "Vinay Venkataraghavan @vinayvenkat"
|
||||||
version_added: "2.4"
|
version_added: "2.4"
|
||||||
requirements:
|
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/)
|
||||||
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
|
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
|
||||||
- xmltodict can be obtained from PyPi U(https://pypi.python.org/pypi/xmltodict)
|
- xmltodict can be obtained from PyPi U(https://pypi.org/project/xmltodict/)
|
||||||
options:
|
options:
|
||||||
api_key:
|
api_key:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -23,9 +23,9 @@ description:
|
||||||
author: "Ivan Bojer (@ivanbojer), Robert Hagen (@rnh556)"
|
author: "Ivan Bojer (@ivanbojer), Robert Hagen (@rnh556)"
|
||||||
version_added: "2.4"
|
version_added: "2.4"
|
||||||
requirements:
|
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/)
|
||||||
- pandevice can be obtained from PyPi U(https://pypi.python.org/pypi/pandevice)
|
- pandevice can be obtained from PyPi U(https://pypi.org/project/pandevice/)
|
||||||
- xmltodict can be obtained from PyPi U(https://pypi.python.org/pypi/xmltodict)
|
- xmltodict can be obtained from PyPi U(https://pypi.org/project/xmltodict/)
|
||||||
notes:
|
notes:
|
||||||
- Checkmode is not supported.
|
- Checkmode is not supported.
|
||||||
- Panorama is supported.
|
- Panorama is supported.
|
||||||
|
|
|
@ -90,7 +90,7 @@ options:
|
||||||
requirements: [ mosquitto ]
|
requirements: [ mosquitto ]
|
||||||
notes:
|
notes:
|
||||||
- This module requires a connection to an MQTT broker such as Mosquitto
|
- 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)"
|
author: "Jan-Piet Mens (@jpmens)"
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue