Convert more http links to https.

This commit is contained in:
Matt Clay 2018-04-23 12:22:36 -07:00
parent 354454ad58
commit 32d786af65
17 changed files with 27 additions and 29 deletions

View file

@ -13,7 +13,7 @@ This, more or less, allows you to keep one central database containing
info about all of your managed instances. info about all of your managed instances.
This script is an example of sourcing that data from Cobbler This script is an example of sourcing that data from Cobbler
(http://cobbler.github.com). With cobbler each --mgmt-class in cobbler (https://cobbler.github.io). With cobbler each --mgmt-class in cobbler
will correspond to a group in Ansible, and --ks-meta variables will be will correspond to a group in Ansible, and --ks-meta variables will be
passed down for use in templates or even in argument lines. passed down for use in templates or even in argument lines.
@ -25,8 +25,6 @@ ansible talking to it twice. The first one found will be used. If no
not add cobbler system names because there is no requirement in cobbler not add cobbler system names because there is no requirement in cobbler
that those correspond to addresses. that those correspond to addresses.
See http://ansible.github.com/api.html for more info
Tested with Cobbler 2.0.11. Tested with Cobbler 2.0.11.
Changelog: Changelog:
@ -56,7 +54,7 @@ Changelog:
# GNU General Public License for more details. # GNU General Public License for more details.
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. # along with Ansible. If not, see <https://www.gnu.org/licenses/>.
###################################################################### ######################################################################

View file

@ -10,7 +10,7 @@ Often a user of a configuration management system will want to keep inventory
in a different software system. Ansible provides a basic text-based system as described in in a different software system. Ansible provides a basic text-based system as described in
:ref:`inventory` but what if you want to use something else? :ref:`inventory` but what if you want to use something else?
Frequent examples include pulling inventory from a cloud provider, LDAP, `Cobbler <http://cobbler.github.com>`_, Frequent examples include pulling inventory from a cloud provider, LDAP, `Cobbler <https://cobbler.github.io>`_,
or a piece of expensive enterprisey CMDB software. or a piece of expensive enterprisey CMDB software.
Ansible easily supports all of these options via an external inventory system. The contrib/inventory directory contains some of these already -- including options for EC2/Eucalyptus, Rackspace Cloud, and OpenStack, examples of some of which will be detailed below. Ansible easily supports all of these options via an external inventory system. The contrib/inventory directory contains some of these already -- including options for EC2/Eucalyptus, Rackspace Cloud, and OpenStack, examples of some of which will be detailed below.
@ -25,7 +25,7 @@ For information about writing your own dynamic inventory source, see :ref:`devel
Example: The Cobbler External Inventory Script Example: The Cobbler External Inventory Script
`````````````````````````````````````````````` ``````````````````````````````````````````````
It is expected that many Ansible users with a reasonable amount of physical hardware may also be `Cobbler <http://cobbler.github.com>`_ users. (note: Cobbler was originally written by Michael DeHaan and is now led by James Cammarata, who also works for Ansible, Inc). It is expected that many Ansible users with a reasonable amount of physical hardware may also be `Cobbler <https://cobbler.github.io>`_ users. (note: Cobbler was originally written by Michael DeHaan and is now led by James Cammarata, who also works for Ansible, Inc).
While primarily used to kickoff OS installations and manage DHCP and DNS, Cobbler has a generic While primarily used to kickoff OS installations and manage DHCP and DNS, Cobbler has a generic
layer that allows it to represent data for multiple configuration management systems (even at the same time), and has layer that allows it to represent data for multiple configuration management systems (even at the same time), and has

View file

@ -9,7 +9,7 @@
# Create a Webfaction application using Ansible and the Webfaction API # Create a Webfaction application using Ansible and the Webfaction API
# #
# Valid application types can be found by looking here: # Valid application types can be found by looking here:
# http://docs.webfaction.com/xmlrpc-api/apps.html#application-types # https://docs.webfaction.com/xmlrpc-api/apps.html#application-types
from __future__ import absolute_import, division, print_function from __future__ import absolute_import, division, print_function
__metaclass__ = type __metaclass__ = type
@ -25,7 +25,7 @@ DOCUMENTATION = '''
module: webfaction_app module: webfaction_app
short_description: Add or remove applications on a Webfaction host short_description: Add or remove applications on a Webfaction host
description: description:
- Add or remove applications on a Webfaction host. Further documentation at U(http://github.com/quentinsf/ansible-webfaction). - Add or remove applications on a Webfaction host. Further documentation at U(https://github.com/quentinsf/ansible-webfaction).
author: Quentin Stafford-Fraser (@quentinsf) author: Quentin Stafford-Fraser (@quentinsf)
version_added: "2.0" version_added: "2.0"
notes: notes:
@ -33,7 +33,7 @@ notes:
You can run playbooks that use this on a local machine, or on a Webfaction host, or elsewhere, since the scripts use the remote webfaction API. You can run playbooks that use this on a local machine, or on a Webfaction host, or elsewhere, since the scripts use the remote webfaction API.
The location is not important. However, running them on multiple hosts I(simultaneously) is best avoided. If you don't specify I(localhost) as The location is not important. However, running them on multiple hosts I(simultaneously) is best avoided. If you don't specify I(localhost) as
your host, you may want to add C(serial: 1) to the plays. your host, you may want to add C(serial: 1) to the plays.
- See `the webfaction API <http://docs.webfaction.com/xmlrpc-api/>`_ for more info. - See `the webfaction API <https://docs.webfaction.com/xmlrpc-api/>`_ for more info.
options: options:
name: name:
@ -49,7 +49,7 @@ options:
type: type:
description: description:
- The type of application to create. See the Webfaction docs at U(http://docs.webfaction.com/xmlrpc-api/apps.html) for a list. - The type of application to create. See the Webfaction docs at U(https://docs.webfaction.com/xmlrpc-api/apps.html) for a list.
required: true required: true
autostart: autostart:

View file

@ -22,7 +22,7 @@ DOCUMENTATION = '''
module: webfaction_db module: webfaction_db
short_description: Add or remove a database on Webfaction short_description: Add or remove a database on Webfaction
description: description:
- Add or remove a database on a Webfaction host. Further documentation at http://github.com/quentinsf/ansible-webfaction. - Add or remove a database on a Webfaction host. Further documentation at https://github.com/quentinsf/ansible-webfaction.
author: Quentin Stafford-Fraser (@quentinsf) author: Quentin Stafford-Fraser (@quentinsf)
version_added: "2.0" version_added: "2.0"
notes: notes:
@ -30,7 +30,7 @@ notes:
You can run playbooks that use this on a local machine, or on a Webfaction host, or elsewhere, since the scripts use the remote webfaction API. You can run playbooks that use this on a local machine, or on a Webfaction host, or elsewhere, since the scripts use the remote webfaction API.
The location is not important. However, running them on multiple hosts I(simultaneously) is best avoided. If you don't specify I(localhost) as The location is not important. However, running them on multiple hosts I(simultaneously) is best avoided. If you don't specify I(localhost) as
your host, you may want to add C(serial: 1) to the plays. your host, you may want to add C(serial: 1) to the plays.
- See `the webfaction API <http://docs.webfaction.com/xmlrpc-api/>`_ for more info. - See `the webfaction API <https://docs.webfaction.com/xmlrpc-api/>`_ for more info.
options: options:
name: name:

View file

@ -19,7 +19,7 @@ DOCUMENTATION = '''
module: webfaction_domain module: webfaction_domain
short_description: Add or remove domains and subdomains on Webfaction short_description: Add or remove domains and subdomains on Webfaction
description: description:
- Add or remove domains or subdomains on a Webfaction host. Further documentation at http://github.com/quentinsf/ansible-webfaction. - Add or remove domains or subdomains on a Webfaction host. Further documentation at https://github.com/quentinsf/ansible-webfaction.
author: Quentin Stafford-Fraser (@quentinsf) author: Quentin Stafford-Fraser (@quentinsf)
version_added: "2.0" version_added: "2.0"
notes: notes:
@ -29,7 +29,7 @@ notes:
You can run playbooks that use this on a local machine, or on a Webfaction host, or elsewhere, since the scripts use the remote webfaction API. You can run playbooks that use this on a local machine, or on a Webfaction host, or elsewhere, since the scripts use the remote webfaction API.
The location is not important. However, running them on multiple hosts I(simultaneously) is best avoided. If you don't specify I(localhost) as The location is not important. However, running them on multiple hosts I(simultaneously) is best avoided. If you don't specify I(localhost) as
your host, you may want to add C(serial: 1) to the plays. your host, you may want to add C(serial: 1) to the plays.
- See `the webfaction API <http://docs.webfaction.com/xmlrpc-api/>`_ for more info. - See `the webfaction API <https://docs.webfaction.com/xmlrpc-api/>`_ for more info.
options: options:

View file

@ -19,7 +19,7 @@ DOCUMENTATION = '''
module: webfaction_mailbox module: webfaction_mailbox
short_description: Add or remove mailboxes on Webfaction short_description: Add or remove mailboxes on Webfaction
description: description:
- Add or remove mailboxes on a Webfaction account. Further documentation at http://github.com/quentinsf/ansible-webfaction. - Add or remove mailboxes on a Webfaction account. Further documentation at https://github.com/quentinsf/ansible-webfaction.
author: Quentin Stafford-Fraser (@quentinsf) author: Quentin Stafford-Fraser (@quentinsf)
version_added: "2.0" version_added: "2.0"
notes: notes:
@ -27,7 +27,7 @@ notes:
You can run playbooks that use this on a local machine, or on a Webfaction host, or elsewhere, since the scripts use the remote webfaction API. You can run playbooks that use this on a local machine, or on a Webfaction host, or elsewhere, since the scripts use the remote webfaction API.
The location is not important. However, running them on multiple hosts I(simultaneously) is best avoided. If you don't specify I(localhost) as The location is not important. However, running them on multiple hosts I(simultaneously) is best avoided. If you don't specify I(localhost) as
your host, you may want to add C(serial: 1) to the plays. your host, you may want to add C(serial: 1) to the plays.
- See `the webfaction API <http://docs.webfaction.com/xmlrpc-api/>`_ for more info. - See `the webfaction API <https://docs.webfaction.com/xmlrpc-api/>`_ for more info.
options: options:
mailbox_name: mailbox_name:

View file

@ -18,7 +18,7 @@ DOCUMENTATION = '''
module: webfaction_site module: webfaction_site
short_description: Add or remove a website on a Webfaction host short_description: Add or remove a website on a Webfaction host
description: description:
- Add or remove a website on a Webfaction host. Further documentation at http://github.com/quentinsf/ansible-webfaction. - Add or remove a website on a Webfaction host. Further documentation at https://github.com/quentinsf/ansible-webfaction.
author: Quentin Stafford-Fraser (@quentinsf) author: Quentin Stafford-Fraser (@quentinsf)
version_added: "2.0" version_added: "2.0"
notes: notes:
@ -29,7 +29,7 @@ notes:
You can run playbooks that use this on a local machine, or on a Webfaction host, or elsewhere, since the scripts use the remote webfaction API. You can run playbooks that use this on a local machine, or on a Webfaction host, or elsewhere, since the scripts use the remote webfaction API.
The location is not important. However, running them on multiple hosts I(simultaneously) is best avoided. If you don't specify I(localhost) as The location is not important. However, running them on multiple hosts I(simultaneously) is best avoided. If you don't specify I(localhost) as
your host, you may want to add C(serial: 1) to the plays. your host, you may want to add C(serial: 1) to the plays.
- See `the webfaction API <http://docs.webfaction.com/xmlrpc-api/>`_ for more info. - See `the webfaction API <https://docs.webfaction.com/xmlrpc-api/>`_ for more info.
options: options:

View file

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# (c) 2012, Afterburn <http://github.com/afterburn> # (c) 2012, Afterburn <https://github.com/afterburn>
# (c) 2013, Aaron Bull Schaefer <aaron@elasticdog.com> # (c) 2013, Aaron Bull Schaefer <aaron@elasticdog.com>
# (c) 2015, Jonathan Lestrelin <jonathan.lestrelin@gmail.com> # (c) 2015, Jonathan Lestrelin <jonathan.lestrelin@gmail.com>
# #

View file

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# (c) 2015, Kevin Brebanov <https://github.com/kbrebanov> # (c) 2015, Kevin Brebanov <https://github.com/kbrebanov>
# Based on pacman (Afterburn <http://github.com/afterburn>, Aaron Bull Schaefer <aaron@elasticdog.com>) # Based on pacman (Afterburn <https://github.com/afterburn>, Aaron Bull Schaefer <aaron@elasticdog.com>)
# and apt (Matthew Williams <matthew@flowroute.com>) modules. # and apt (Matthew Williams <matthew@flowroute.com>) modules.
# #
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

View file

@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright: (c) 2012, Afterburn <http://github.com/afterburn> # Copyright: (c) 2012, Afterburn <https://github.com/afterburn>
# Copyright: (c) 2013, Aaron Bull Schaefer <aaron@elasticdog.com> # Copyright: (c) 2013, Aaron Bull Schaefer <aaron@elasticdog.com>
# Copyright: (c) 2015, Indrajit Raychaudhuri <irc+code@indrajit.com> # Copyright: (c) 2015, Indrajit Raychaudhuri <irc+code@indrajit.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

View file

@ -4,7 +4,7 @@
# (c) 2013, bleader # (c) 2013, bleader
# Written by bleader <bleader@ratonland.org> # Written by bleader <bleader@ratonland.org>
# Based on pkgin module written by Shaun Zinck <shaun.zinck at gmail.com> # Based on pkgin module written by Shaun Zinck <shaun.zinck at gmail.com>
# that was based on pacman module written by Afterburn <http://github.com/afterburn> # that was based on pacman module written by Afterburn <https://github.com/afterburn>
# that was based on apt module written by Matthew Williams <matthew@flowroute.com> # that was based on apt module written by Matthew Williams <matthew@flowroute.com>
# #
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

View file

@ -5,7 +5,7 @@
# Written by Kim Nørgaard <jasen@jasen.dk> # Written by Kim Nørgaard <jasen@jasen.dk>
# Based on pkgng module written by bleader <bleader@ratonland.org> # Based on pkgng module written by bleader <bleader@ratonland.org>
# that was based on pkgin module written by Shaun Zinck <shaun.zinck at gmail.com> # that was based on pkgin module written by Shaun Zinck <shaun.zinck at gmail.com>
# that was based on pacman module written by Afterburn <http://github.com/afterburn> # that was based on pacman module written by Afterburn <https://github.com/afterburn>
# that was based on apt module written by Matthew Williams <matthew@flowroute.com> # that was based on apt module written by Matthew Williams <matthew@flowroute.com>
# #
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

View file

@ -1,4 +1,4 @@
# (c) 2017, Tennis Smith, http://github.com/gamename # (c) 2017, Tennis Smith, https://github.com/gamename
# (c) 2017 Ansible Project # (c) 2017 Ansible Project
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

View file

@ -1,4 +1,4 @@
# (C) 2016, Joel, http://github.com/jjshoe # (C) 2016, Joel, https://github.com/jjshoe
# (C) 2015, Tom Paine, <github@aioue.net> # (C) 2015, Tom Paine, <github@aioue.net>
# (C) 2014, Jharrod LaFon, @JharrodLaFon # (C) 2014, Jharrod LaFon, @JharrodLaFon
# (C) 2012-2013, Michael DeHaan, <michael.dehaan@gmail.com> # (C) 2012-2013, Michael DeHaan, <michael.dehaan@gmail.com>

View file

@ -13,7 +13,7 @@
# GNU General Public License for more details. # GNU General Public License for more details.
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. # along with Ansible. If not, see <https://www.gnu.org/licenses/>.
# Make coding more python3-ish # Make coding more python3-ish
from __future__ import (absolute_import, division, print_function) from __future__ import (absolute_import, division, print_function)
@ -69,7 +69,7 @@ def expand_hostname_range(line=None):
appearance. They are replaced in this function with '|' to ease appearance. They are replaced in this function with '|' to ease
string splitting. string splitting.
References: http://ansible.github.com/patterns.html#hosts-and-groups References: https://docs.ansible.com/ansible/latest/user_guide/intro_inventory.html#hosts-and-groups
''' '''
all_hosts = [] all_hosts = []
if line: if line:

View file

@ -4,7 +4,7 @@ Priority: optional
Standards-Version: 3.9.3 Standards-Version: 3.9.3
Maintainer: Ansible, Inc. <info@ansible.com> Maintainer: Ansible, Inc. <info@ansible.com>
Build-Depends: cdbs, debhelper (>= 5.0.0), python-docutils, python, dh-python | python-support, python-setuptools, lsb-release Build-Depends: cdbs, debhelper (>= 5.0.0), python-docutils, python, dh-python | python-support, python-setuptools, lsb-release
Homepage: http://ansible.github.com/ Homepage: https://github.com/ansible/ansible/
Package: ansible Package: ansible
Architecture: all Architecture: all

View file

@ -1,4 +1,4 @@
Ansible is a radically simple model-driven configuration management, deployment, and command execution framework. Ansible is a radically simple model-driven configuration management, deployment, and command execution framework.
Author: Michael DeHaan Author: Michael DeHaan
WWW: http://ansible.github.com/ WWW: https://github.com/ansible/ansible/